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

GetTypography() public method

Gets the typography setting of the text at the specified position.
public GetTypography ( int currentPosition ) : SharpDX.DirectWrite.Typography
currentPosition int The position of the text to inspect.
return SharpDX.DirectWrite.Typography
        public Typography GetTypography(int currentPosition)
        {
            TextRange temp;
            return GetTypography(currentPosition, out temp);
        }