Be.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)
            {
                //System.Diagnostics.Debug.WriteLine("GetCaretPointF()", "StringKeyInterpreter");

                Point gp = _hexBox.GetGridBytePoint(byteIndex);
                return _hexBox.GetByteStringPointF(gp);
            }