11 references to RtfSuperSubscript
PresentationFramework (11)
System\Windows\Documents\XamlToRtfWriter.cs (11)
3142
RtfSuperSubscript
ss =
RtfSuperSubscript
.None;
3146
if (ss ==
RtfSuperSubscript
.Super)
3150
else if (ss ==
RtfSuperSubscript
.Sub)
3154
else if (ss ==
RtfSuperSubscript
.Normal)
3459
new LookupTableEntry("Normal", (int)
RtfSuperSubscript
.Normal),
3460
new LookupTableEntry("Superscript", (int)
RtfSuperSubscript
.Super),
3461
new LookupTableEntry("Subscript", (int)
RtfSuperSubscript
.Sub),
3489
internal static bool ConvertToSuperSub(ConverterState converterState, string s, ref
RtfSuperSubscript
ss)
3496
ss = (
RtfSuperSubscript
)BasicLookup(TypographyVariantsTable, s);
3498
return ss !=
RtfSuperSubscript
.None;