4 references to EM_LINEFROMCHAR
System.Windows.Forms (1)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1597public virtual int GetLineFromCharIndex(int index) => (int)PInvokeCore.SendMessage(this, PInvokeCore.EM_LINEFROMCHAR, (WPARAM)index);
System.Windows.Forms.Tests (3)
System\Windows\Forms\ComboBox.ComboBoxUiaTextProviderTests.cs (1)
1157int expectedLine = (int)PInvokeCore.SendMessage((IHandle<HWND>)comboBox.TestAccessor().Dynamic._childEdit, PInvokeCore.EM_LINEFROMCHAR, (WPARAM)charIndex);
System\Windows\Forms\RichTextBoxTests.cs (1)
8919if (m.Msg == (int)PInvokeCore.EM_LINEFROMCHAR)
TextBoxBaseTests.cs (1)
4823if (m.Msg == (int)PInvokeCore.EM_LINEFROMCHAR)