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

GetInlineObject() public method

Gets the inline object at the specified position.
public GetInlineObject ( int currentPosition ) : InlineObject
currentPosition int The specified text position.
return InlineObject
        public InlineObject GetInlineObject(int currentPosition)
        {
            TextRange temp;
            return GetInlineObject(currentPosition, out temp);
        }