Does anyone know how I can determine the character over which my cursor is moving inside of a WinFormattedTextEditor control? The System.Windows.Forms.TextBox control has a GetCharIndexFromPosition function, but this is not implemented within the WinFormattedTextEditor control.
Any ideas?
Hi,
This kind of stuff can generally be found on the EditInfo property.
this.ultraFormattedTextEditor1.EditInfo.GetCaretPositionFromMouseLocation(mousePos);