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

HasUnderline() public method

Gets the underline presence of the text at the specified position.
public HasUnderline ( int currentPosition ) : bool
currentPosition int The current text position.
return bool
        public bool HasUnderline(int currentPosition)
        {
            TextRange temp;
            return HasUnderline(currentPosition, out temp);
        }