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

HasStrikethrough() public method

Get the strikethrough presence of the text at the specified position.
public HasStrikethrough ( int currentPosition ) : bool
currentPosition int The position of the text to inspect.
return bool
        public bool HasStrikethrough(int currentPosition)
        {
            TextRange temp;
            return HasStrikethrough(currentPosition, out temp);
        }