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

GetLocaleName() public method

Gets the locale name of the text at the specified position.
public GetLocaleName ( int currentPosition ) : string
currentPosition int The position of the text to inspect.
return string
        public string GetLocaleName(int currentPosition)
        {
            TextRange temp;
            return GetLocaleName(currentPosition, out temp);
        }

Same methods

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