11 references to RtfSuperSubscript
PresentationFramework (11)
System\Windows\Documents\XamlToRtfWriter.cs (11)
3141RtfSuperSubscript ss = RtfSuperSubscript.None; 3145if (ss == RtfSuperSubscript.Super) 3149else if (ss == RtfSuperSubscript.Sub) 3153else if (ss == RtfSuperSubscript.Normal) 3458new LookupTableEntry("Normal", (int)RtfSuperSubscript.Normal), 3459new LookupTableEntry("Superscript", (int)RtfSuperSubscript.Super), 3460new LookupTableEntry("Subscript", (int)RtfSuperSubscript.Sub), 3488internal static bool ConvertToSuperSub(ConverterState converterState, string s, ref RtfSuperSubscript ss) 3495ss = (RtfSuperSubscript)BasicLookup(TypographyVariantsTable, s); 3497return ss != RtfSuperSubscript.None;