97 references to TextMarkerStyle
PresentationCore (25)
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (22)
54
TextMarkerStyle
markerStyle,
58
Debug.Assert(markerStyle !=
TextMarkerStyle
.None);
69
case
TextMarkerStyle
.Disc:
72
case
TextMarkerStyle
.Circle:
75
case
TextMarkerStyle
.Square:
78
case
TextMarkerStyle
.Box:
114
case
TextMarkerStyle
.Decimal:
118
case
TextMarkerStyle
.LowerLatin:
122
case
TextMarkerStyle
.UpperLatin:
126
case
TextMarkerStyle
.LowerRoman:
130
case
TextMarkerStyle
.UpperRoman:
432
internal static bool IsKnownSymbolMarkerStyle(
TextMarkerStyle
markerStyle)
435
markerStyle ==
TextMarkerStyle
.Disc
436
|| markerStyle ==
TextMarkerStyle
.Circle
437
|| markerStyle ==
TextMarkerStyle
.Square
438
|| markerStyle ==
TextMarkerStyle
.Box
442
internal static bool IsKnownIndexMarkerStyle(
TextMarkerStyle
markerStyle)
445
markerStyle ==
TextMarkerStyle
.Decimal
446
|| markerStyle ==
TextMarkerStyle
.LowerLatin
447
|| markerStyle ==
TextMarkerStyle
.UpperLatin
448
|| markerStyle ==
TextMarkerStyle
.LowerRoman
449
|| markerStyle ==
TextMarkerStyle
.UpperRoman
Core\CSharp\System\Windows\Media\TextFormatting\TextSimpleMarkerProperties.cs (3)
44
TextMarkerStyle
style,
56
if (style !=
TextMarkerStyle
.None)
73
throw new ArgumentException(SR.Get(SRID.Enum_Invalid, typeof(
TextMarkerStyle
)), "style");
PresentationFramework (72)
src\Framework\MS\Internal\PtsHost\ListMarkerSourceInfo.cs (20)
68
case
TextMarkerStyle
.Disc:
72
case
TextMarkerStyle
.Circle:
76
case
TextMarkerStyle
.Square:
80
case
TextMarkerStyle
.Box:
110
case
TextMarkerStyle
.Decimal:
114
case
TextMarkerStyle
.LowerLatin:
118
case
TextMarkerStyle
.UpperLatin:
122
case
TextMarkerStyle
.LowerRoman:
126
case
TextMarkerStyle
.UpperRoman:
371
private static bool IsKnownSymbolMarkerStyle(
TextMarkerStyle
markerStyle)
374
markerStyle ==
TextMarkerStyle
.Disc
375
|| markerStyle ==
TextMarkerStyle
.Circle
376
|| markerStyle ==
TextMarkerStyle
.Square
377
|| markerStyle ==
TextMarkerStyle
.Box
381
private static bool IsKnownIndexMarkerStyle(
TextMarkerStyle
markerStyle)
384
markerStyle ==
TextMarkerStyle
.Decimal
385
|| markerStyle ==
TextMarkerStyle
.LowerLatin
386
|| markerStyle ==
TextMarkerStyle
.UpperLatin
387
|| markerStyle ==
TextMarkerStyle
.LowerRoman
388
|| markerStyle ==
TextMarkerStyle
.UpperRoman
src\Framework\MS\Internal\Text\MarkerProperties.cs (1)
64
private
TextMarkerStyle
_style;
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (7)
82
if (val is
TextMarkerStyle
)
84
switch ((
TextMarkerStyle
)val)
86
case
TextMarkerStyle
.None:
89
case
TextMarkerStyle
.Disc:
92
case
TextMarkerStyle
.Circle:
95
case
TextMarkerStyle
.Square:
98
case
TextMarkerStyle
.Box:
src\Framework\System\Windows\Documents\List.cs (16)
98
typeof(
TextMarkerStyle
),
101
TextMarkerStyle
.Disc,
109
public
TextMarkerStyle
MarkerStyle
111
get { return (
TextMarkerStyle
)GetValue(MarkerStyleProperty); }
315
TextMarkerStyle
value = (
TextMarkerStyle
)o;
316
return value ==
TextMarkerStyle
.None
317
|| value ==
TextMarkerStyle
.Disc
318
|| value ==
TextMarkerStyle
.Circle
319
|| value ==
TextMarkerStyle
.Square
320
|| value ==
TextMarkerStyle
.Box
321
|| value ==
TextMarkerStyle
.LowerRoman
322
|| value ==
TextMarkerStyle
.UpperRoman
323
|| value ==
TextMarkerStyle
.LowerLatin
324
|| value ==
TextMarkerStyle
.UpperLatin
325
|| value ==
TextMarkerStyle
.Decimal;
src\Framework\System\windows\Documents\TextEditorLists.cs (14)
195
list.MarkerStyle =
TextMarkerStyle
.Disc;
199
TextRangeEditLists.ConvertParagraphsToListItems(thisSelection,
TextMarkerStyle
.Disc);
204
TextRangeEditLists.ConvertParagraphsToListItems(thisSelection,
TextMarkerStyle
.Disc);
224
list.MarkerStyle =
TextMarkerStyle
.Decimal;
228
TextRangeEditLists.ConvertParagraphsToListItems(thisSelection,
TextMarkerStyle
.Decimal);
233
TextRangeEditLists.ConvertParagraphsToListItems(thisSelection,
TextMarkerStyle
.Decimal);
245
TextRangeEditLists.ConvertParagraphsToListItems(thisSelection,
TextMarkerStyle
.Decimal);
300
TextRangeEditLists.ConvertParagraphsToListItems(thisSelection,
TextMarkerStyle
.Disc);
366
TextMarkerStyle
markerStyle = list.MarkerStyle;
367
return
TextMarkerStyle
.Disc <= markerStyle && markerStyle <=
TextMarkerStyle
.Box;
377
TextMarkerStyle
markerStyle = list.MarkerStyle;
378
return
TextMarkerStyle
.LowerRoman <= markerStyle && markerStyle <=
TextMarkerStyle
.Decimal;
src\Framework\System\Windows\Documents\TextRangeBase.cs (13)
858
TextMarkerStyle
markerStyle = list != null ? list.MarkerStyle :
TextMarkerStyle
.Disc;
902
private static void WriteListMarker(StringBuilder textBuffer,
TextMarkerStyle
listMarkerStyle, int listItemNumber)
909
case
TextMarkerStyle
.None :
912
case
TextMarkerStyle
.Disc :
915
case
TextMarkerStyle
.Circle :
918
case
TextMarkerStyle
.Square :
921
case
TextMarkerStyle
.Box :
925
case
TextMarkerStyle
.Decimal:
929
case
TextMarkerStyle
.LowerLatin:
933
case
TextMarkerStyle
.UpperLatin:
937
case
TextMarkerStyle
.LowerRoman:
941
case
TextMarkerStyle
.UpperRoman:
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (1)
270
internal static bool ConvertParagraphsToListItems(TextRange range,
TextMarkerStyle
markerStyle)