public static void ApplyTypographySchemeToAll <T> (ITypographyScheming typographyScheme) where T : ITextInputController
 {
     ApplyTypographySchemeToAll(typographyScheme, typeof(T));
 }
Example #2
0
 public static void ApplyTypographySchemeToTextInputController(ITypographyScheming typographyScheme, ITextInputController textInputController)
 {
     ApplyTypographyScheme(typographyScheme, textInputController);
 }
Example #3
0
 public static void ApplyTypographySchemeToTextInput(ITypographyScheming typographyScheme, ITextInput textInput)
 {
     ApplyTypographyScheme(typographyScheme, textInput);
 }
Example #4
0
 public static void ApplyTypographySchemeToAll(ITypographyScheming typographyScheme, Type textInputControllerType)
 {
     ApplyTypographySchemeToAll(typographyScheme, new Class(textInputControllerType));
 }