2 overrides of GetCharIndexFromPosition
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1840public override int GetCharIndexFromPosition(Point pt)
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2322public override int GetCharIndexFromPosition(Point pt) {
3 references to GetCharIndexFromPosition
System.Windows.Forms (3)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1847index = base.GetCharIndexFromPosition(pt);
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
1746int index = GetCharIndexFromPosition(pt);
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
601public int GetCharIndexFromPosition(System.Drawing.Point pt) { return TextBox.GetCharIndexFromPosition(pt); }