Esempio n. 1
0
 public override void Set(BGICanvas bgi)
 {
     this.Font          = bgi.GetFontType();
     this.Direction     = bgi.GetTextDirection();
     this.CharacterSize = bgi.GetFontSize();
 }
Esempio n. 2
0
 public override bool InternalShouldApply(BGICanvas bgi)
 {
     return(bgi.GetFontType() != this.Font ||
            bgi.GetTextDirection() != this.Direction ||
            bgi.GetFontSize() != this.CharacterSize);
 }