AlphaTab.Rendering.Glyphs.TextGlyph.TextGlyph C# (CSharp) Method

TextGlyph() public method

public TextGlyph ( float x, float y, string text, Font font, TextAlign textAlign = TextAlign.Left ) : AlphaTab.Platform
x float
y float
text string
font AlphaTab.Platform.Model.Font
textAlign TextAlign
return AlphaTab.Platform
        public TextGlyph(float x, float y, string text, Font font, TextAlign textAlign = TextAlign.Left)
            : base(x, y)
        {
            _text = text;
            Font = font;
            TextAlign = textAlign;
        }