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

GetFontStretch() public method

Gets the font stretch of the text at the specified position.
public GetFontStretch ( int currentPosition ) : FontStretch
currentPosition int The position of the text to inspect.
return FontStretch
        public FontStretch GetFontStretch(int currentPosition)
        {
            TextRange temp;
            return GetFontStretch(currentPosition, out temp);
        }