11 references to RtfSuperSubscript
PresentationFramework (11)
System\Windows\Documents\XamlToRtfWriter.cs (11)
3143
RtfSuperSubscript
ss =
RtfSuperSubscript
.None;
3147
if (ss ==
RtfSuperSubscript
.Super)
3151
else if (ss ==
RtfSuperSubscript
.Sub)
3155
else if (ss ==
RtfSuperSubscript
.Normal)
3460
new LookupTableEntry("Normal", (int)
RtfSuperSubscript
.Normal),
3461
new LookupTableEntry("Superscript", (int)
RtfSuperSubscript
.Super),
3462
new LookupTableEntry("Subscript", (int)
RtfSuperSubscript
.Sub),
3490
internal static bool ConvertToSuperSub(ConverterState converterState, string s, ref
RtfSuperSubscript
ss)
3497
ss = (
RtfSuperSubscript
)BasicLookup(TypographyVariantsTable, s);
3499
return ss !=
RtfSuperSubscript
.None;