Example #1
0
 public PrintFontInfo(FontOptionsPage owner)
     : base(owner.TextManager.PrintFont, "Print", true, owner)
 {
 }
Example #2
0
 public SourceFontInfo(FontOptionsPage owner)
     : base(owner.TextManager.SourceFont, "Source code", true, owner)
 {
 }
Example #3
0
 public FontInfo(Font originalFont, string displayName, bool onlyFixed, FontOptionsPage owner)
 {
     this._displayName = displayName;
     this._onlyFixed = onlyFixed;
     this._owner = owner;
     this._originalFace = originalFont.Name;
     this._originalSize = originalFont.Size;
     this._newFace = this._originalFace;
     this._newSize = this._originalSize;
 }