Exemplo n.º 1
0
 public static void SetRichTextFontSize(this string self, int fontSize)
 {
     RichTextUtil.SetFontSize(self, fontSize);
 }
Exemplo n.º 2
0
 public static void SetRichTextIsBold(this string self)
 {
     RichTextUtil.SetIsBold(self);
 }
Exemplo n.º 3
0
 public static void SetIsItalic(this string self)
 {
     RichTextUtil.SetIsItalic(self);
 }
Exemplo n.º 4
0
 public static void SetRichTextColor(this string self, Color color)
 {
     RichTextUtil.SetColor(self, color);
 }