11 references to RtfSuperSubscript
PresentationFramework (11)
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (11)
3149
RtfSuperSubscript
ss =
RtfSuperSubscript
.None;
3153
if (ss ==
RtfSuperSubscript
.Super)
3157
else if (ss ==
RtfSuperSubscript
.Sub)
3161
else if (ss ==
RtfSuperSubscript
.Normal)
3466
new LookupTableEntry("Normal", (int)
RtfSuperSubscript
.Normal),
3467
new LookupTableEntry("Superscript", (int)
RtfSuperSubscript
.Super),
3468
new LookupTableEntry("Subscript", (int)
RtfSuperSubscript
.Sub),
3496
internal static bool ConvertToSuperSub(ConverterState converterState, string s, ref
RtfSuperSubscript
ss)
3503
ss = (
RtfSuperSubscript
)BasicLookup(TypographyVariantsTable, s);
3505
return ss !=
RtfSuperSubscript
.None;