Inheritance: PixelFarm.Drawing.Fonts.ActualFont
コード例 #1
0
 public void RegisterFont(RequestFont f, TextureFont textureFont)
 {
     registerFonts.Add(f.FontKey, textureFont);
 }
コード例 #2
0
ファイル: TextureFont.cs プロジェクト: prepare/HTML-Renderer
 public override ActualFont GetFontAtPointsSize(float pointSize)
 {
     TextureFont t = new TextureFont(this, pointSize);
     return t;
 }
コード例 #3
0
 internal void SetCurrentTextureFont(TextureFont textureFont)
 {
     _currentTextureFont = textureFont;
 }