11 references to RtfSuperSubscript
PresentationFramework (11)
System\Windows\Documents\XamlToRtfWriter.cs (11)
3141
RtfSuperSubscript
ss =
RtfSuperSubscript
.None;
3145
if (ss ==
RtfSuperSubscript
.Super)
3149
else if (ss ==
RtfSuperSubscript
.Sub)
3153
else if (ss ==
RtfSuperSubscript
.Normal)
3458
new LookupTableEntry("Normal", (int)
RtfSuperSubscript
.Normal),
3459
new LookupTableEntry("Superscript", (int)
RtfSuperSubscript
.Super),
3460
new LookupTableEntry("Subscript", (int)
RtfSuperSubscript
.Sub),
3488
internal static bool ConvertToSuperSub(ConverterState converterState, string s, ref
RtfSuperSubscript
ss)
3495
ss = (
RtfSuperSubscript
)BasicLookup(TypographyVariantsTable, s);
3497
return ss !=
RtfSuperSubscript
.None;