Esempio n. 1
0
 public static CodeClassificationBuilder WithForeground(
     this CodeClassificationBuilder @this,
     Color foregroundColor)
 {
     return(@this.As <ICodeClassificationBuilder>()
            .WithForeground(foregroundColor));
 }
Esempio n. 2
0
 public static CodeClassificationBuilder ClassifiesLanguage(
     this CodeClassificationBuilder @this,
     ClassificationLanguage language)
 {
     return(@this.As <ICodeClassificationBuilder>()
            .ClassifiesLanguage(language));
 }
Esempio n. 3
0
 public static CodeClassificationBuilder IsBold(
     this CodeClassificationBuilder @this,
     bool isBold = true)
 {
     return(@this.As <ICodeClassificationBuilder>()
            .IsBold(isBold));
 }
Esempio n. 4
0
 public static CodeClassificationBuilder IsInClassificationScope(
     this CodeClassificationBuilder @this,
     ClassificationScope scope)
 {
     return(@this.As <ICodeClassificationBuilder>()
            .IsInClassificationScope(scope));
 }
Esempio n. 5
0
 public static CodeClassificationBuilder WithBackground(
     this CodeClassificationBuilder @this,
     string backgroundColorHex)
 {
     return(@this.As <ICodeClassificationBuilder>()
            .WithBackground(backgroundColorHex));
 }