Exemplo n.º 1
0
 private void DisposeFontFace()
 {
     if (_fontFace == null)
     {
         return;
     }
     _fontFace.Dispose();
     _fontFace = null;
 }
Exemplo n.º 2
0
 private DW.FontFace UpdateFontFace()
 {
     _fontFace = _dwFactory.CreateFontFace(_fontFaceType, new[] { _fontFile }, _fontFaceIndex, FontSimulations);
     return(_fontFace);
 }