File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
csharp/VS_Snippets_Wpf/FlowDocumentSnippets/CSharp
visualbasic/VS_Snippets_Wpf/FlowDocumentSnippets/visualbasic Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 54
54
boundaries obvious.
55
55
56
56
The column gap is the space between columns; this FlowDocument will
57
- have a column gap of 20 device-independend pixels. The column rule
57
+ have a column gap of 20 device-independent pixels. The column rule
58
58
is a vertical line drawn in the column gap, and is used to visually
59
59
separate columns; this FlowDocument a Dodger-blue column rule that
60
60
is 5 pixels wide.
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ void ColumnStuff()
163
163
{
164
164
// <Snippet_FlowDocumentColumnGap>
165
165
FlowDocument flowDoc = new FlowDocument ( new Paragraph ( new Run ( "A bit of text content..." ) ) ) ;
166
- // Set the desired column gap to 10 device independend pixels.
166
+ // Set the desired column gap to 10 device independent pixels.
167
167
flowDoc . ColumnGap = 10.0 ;
168
168
// </Snippet_FlowDocumentColumnGap>
169
169
}
@@ -248,7 +248,7 @@ void FontStuff()
248
248
{
249
249
// <Snippet_FlowDocumentFontStuff>
250
250
FlowDocument flowDoc = new FlowDocument ( new Paragraph ( new Run ( "A bit of text content..." ) ) ) ;
251
- // Set the desired column gap to 10 device independend pixels.
251
+ // Set the desired column gap to 10 device independent pixels.
252
252
flowDoc . FontFamily = new FontFamily ( "Century Gothic" ) ;
253
253
flowDoc . FontSize = 12.0 ;
254
254
flowDoc . FontStretch = FontStretches . UltraExpanded ;
Original file line number Diff line number Diff line change 53
53
boundaries obvious.
54
54
55
55
The column gap is the space between columns; this FlowDocument will
56
- have a column gap of 20 device-independend pixels. The column rule
56
+ have a column gap of 20 device-independent pixels. The column rule
57
57
is a vertical line drawn in the column gap, and is used to visually
58
58
separate columns; this FlowDocument a Dodger-blue column rule that
59
59
is 5 pixels wide.
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ Namespace FlowDocumentSnippets
148
148
Private Sub ColumnStuff()
149
149
' <Snippet_FlowDocumentColumnGap>
150
150
Dim flowDocColGap As New FlowDocument( New Paragraph( New Run( "A bit of text content..." )))
151
- ' Set the desired column gap to 10 device independend pixels.
151
+ ' Set the desired column gap to 10 device independent pixels.
152
152
flowDocColGap.ColumnGap = 10.0
153
153
' </Snippet_FlowDocumentColumnGap>
154
154
@@ -209,7 +209,7 @@ Namespace FlowDocumentSnippets
209
209
Private Sub FontStuff()
210
210
' <Snippet_FlowDocumentFontStuff>
211
211
Dim flowDoc As New FlowDocument( New Paragraph( New Run( "A bit of text content..." )))
212
- ' Set the desired column gap to 10 device independend pixels.
212
+ ' Set the desired column gap to 10 device independent pixels.
213
213
flowDoc.FontFamily = New FontFamily( "Century Gothic" )
214
214
flowDoc.FontSize = 12.0
215
215
flowDoc.FontStretch = FontStretches.UltraExpanded
You can’t perform that action at this time.
0 commit comments