1 write to _owningChildEdit
System.Windows.Forms (1)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
33_owningChildEdit = childEdit;
15 references to _owningChildEdit
System.Windows.Forms (15)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (15)
54public override bool IsScrollable => ((int)GetWindowStyle(_owningChildEdit) & PInvoke.ES_AUTOHSCROLL) != 0; 64public override string Text => PInvoke.GetWindowText(_owningChildEdit); 66public override int TextLength => (int)PInvoke.SendMessage(_owningChildEdit, PInvoke.WM_GETTEXTLENGTH); 68public override WINDOW_EX_STYLE WindowExStyle => GetWindowExStyle(_owningChildEdit); 70public override WINDOW_STYLE WindowStyle => GetWindowStyle(_owningChildEdit); 89PInvoke.SendMessage(_owningChildEdit, PInvoke.EM_GETSEL, ref start, ref end); 163PInvoke.SendMessage(_owningChildEdit, PInvoke.EM_GETSEL, ref start, ref end); 228PInvoke.MapWindowPoints(_owningChildEdit.Handle, HWND.Null, ref pt); 272if (PInvoke.MapWindowPoints(HWND.Null, _owningChildEdit.Handle, ref clientLocation) == 0) 308PInvoke.MapWindowPoints(_owningChildEdit.Handle, HWND.Null, ref r); 326PInvoke.SendMessage(_owningChildEdit, PInvoke.EM_SETSEL, (WPARAM)start, (LPARAM)end); 331int index = PARAM.LOWORD(PInvoke.SendMessage(_owningChildEdit, PInvoke.EM_CHARFROMPOS, 0, PARAM.FromPoint(pt))); 355PInvoke.SendMessage(_owningChildEdit, PInvoke.EM_GETRECT, 0, ref rectangle); 367int i = (int)PInvoke.SendMessage(_owningChildEdit, PInvoke.EM_POSFROMCHAR, (WPARAM)index); 376using GetDcScope hdc = new(_owningChildEdit.Handle);