コード例 #1
0
ファイル: FontAdapter.cs プロジェクト: pearswj/Eto.Toolkit
 public override double GetWhitespaceWidth(RGraphics graphics)
 {
     if (_whitespaceWidth < 0)
     {
         _whitespaceWidth = graphics.MeasureString(" ", this).Width;
     }
     return(_whitespaceWidth);
 }