コード例 #1
0
ファイル: XMLDrawing.cs プロジェクト: friman/Digital-Signage
 public XMLFont(string name, float emSize, XMLFontStyle style, XMLGraphicsUnit unit, byte gdiCharSet, bool gdiVerticalFont)
 {
     this.name            = name;
     this.size            = emSize;
     this.style           = style;
     this.unit            = unit;
     this.gdiCharSet      = gdiCharSet;
     this.gdiVerticalFont = gdiVerticalFont;
 }
コード例 #2
0
 public static GraphicsUnit ToNET(XMLGraphicsUnit unit)
 {
     return((GraphicsUnit)Convert.ToInt32(unit));
 }