SharpDX.DirectWrite.TextLayout.GetFontSize C# (CSharp) Method

GetFontSize() public method

Gets the font em height of the text at the specified position.
public GetFontSize ( int currentPosition ) : float
currentPosition int The position of the text to inspect.
return float
        public float GetFontSize(int currentPosition)
        {
            TextRange temp;
            return GetFontSize(currentPosition, out temp);         
        }