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

GetFontFamilyName() public method

Gets the font family name of the text at the specified position.
public GetFontFamilyName ( int currentPosition ) : string
currentPosition int The position of the text to examine.
return string
        public string GetFontFamilyName(int currentPosition)
        {
            TextRange temp;
            return GetFontFamilyName(currentPosition, out temp);
        }

Same methods

TextLayout::GetFontFamilyName ( int currentPosition, SharpDX.DirectWrite.TextRange &textRange ) : string