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