public TextDoubleWidthHeight(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|4C";
 }
 public TextRightAlign(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|rA";
 }
Exemple #3
0
 public TextShading(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|sC";
 }
 public TextCentreAlign(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|cA";
 }
Exemple #5
0
 public TextBold(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|bC";
 }
 public TextItalic(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|iC";
 }
 public TextUnderline(TextComponent textComponent)
     : base(textComponent)
 {
     this.textDecoration = "\x1B|uC";
 }
 public TextDecorator(TextComponent baseComponent)
 {
     this.baseComponent = baseComponent;
 }