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