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