System.Windows.Forms.HexBox.StringKeyInterpreter.GetCaretPointF C# (CSharp) Method

GetCaretPointF() public method

public GetCaretPointF ( long byteIndex ) : PointF
byteIndex long
return System.Drawing.PointF
            public override PointF GetCaretPointF(long byteIndex)
            {
                Point gp = _hexBox.GetGridBytePoint(byteIndex);
                return _hexBox.GetByteStringPointF(gp);
            }