コード例 #1
0
 public Font(string familyName, float emSize)
 {
     this.family = new FontFamily(familyName);
     this.native = LibIGraph._CreateFont(this.family.native, emSize, FontStyle.Regular);
 }
コード例 #2
0
 public Font(FontFamily family, float emSize, FontStyle style)
 {
     this.family = family;
     this.native = LibIGraph._CreateFont(family.native, emSize, style);
 }