7 references to EM_CHARFROMPOS
System.Private.Windows.Core (1)
Windows\Win32\MessageId.cs (1)
243PInvokeCore.EM_CHARFROMPOS => "EM_CHARFROMPOS",
System.Windows.Forms (4)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
331int index = PARAM.LOWORD(PInvokeCore.SendMessage(_owningChildEdit, PInvokeCore.EM_CHARFROMPOS, 0, PARAM.FromPoint(pt)));
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
404int index = (int)PInvokeCore.SendMessage(_owningChildEdit, PInvokeCore.EM_CHARFROMPOS, (WPARAM)0, (LPARAM)pt);
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
2210int index = (int)PInvokeCore.SendMessage(this, PInvokeCore.EM_CHARFROMPOS, 0, ref wpt);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1567int index = (int)PInvokeCore.SendMessage(this, PInvokeCore.EM_CHARFROMPOS, 0, PARAM.FromPoint(pt));
System.Windows.Forms.Tests (2)
System\Windows\Forms\MessageTests.cs (1)
419yield return new object[] { PInvokeCore.EM_CHARFROMPOS, " (EM_CHARFROMPOS)" };
TextBoxBaseTests.cs (1)
4511if (m.Msg == (int)PInvokeCore.EM_CHARFROMPOS)