コード例 #1
0
 public static bool GetStrikethrough(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Strikethrough));
 }
コード例 #2
0
 public static bool GetUnorderedList(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.UnorderedList));
 }
コード例 #3
0
 public static bool GetItalic(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Italic));
 }
コード例 #4
0
 public static bool GetBold(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Bold));
 }
コード例 #5
0
 public static bool GetUnderline(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Underline));
 }
コード例 #6
0
 public static bool GetSubscript(this ITextAttributes attributes)
 => attributes.GetBoolAttribute(TextAttribute.Subscript);