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