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