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)
54
public override bool IsScrollable => ((int)GetWindowStyle(
_owningChildEdit
) & PInvoke.ES_AUTOHSCROLL) != 0;
64
public override string Text => PInvokeCore.GetWindowText(
_owningChildEdit
);
66
public override int TextLength => (int)PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.WM_GETTEXTLENGTH);
68
public override WINDOW_EX_STYLE WindowExStyle => GetWindowExStyle(
_owningChildEdit
);
70
public override WINDOW_STYLE WindowStyle => GetWindowStyle(
_owningChildEdit
);
89
PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.EM_GETSEL, ref start, ref end);
163
PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.EM_GETSEL, ref start, ref end);
228
PInvokeCore.MapWindowPoints(
_owningChildEdit
.Handle, HWND.Null, ref pt);
272
if (PInvokeCore.MapWindowPoints(HWND.Null,
_owningChildEdit
.Handle, ref clientLocation) == 0)
308
PInvokeCore.MapWindowPoints(
_owningChildEdit
.Handle, HWND.Null, ref r);
326
PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.EM_SETSEL, (WPARAM)start, (LPARAM)end);
331
int index = PARAM.LOWORD(PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.EM_CHARFROMPOS, 0, PARAM.FromPoint(pt)));
355
PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.EM_GETRECT, 0, ref rectangle);
367
int i = (int)PInvokeCore.SendMessage(
_owningChildEdit
, PInvokeCore.EM_POSFROMCHAR, (WPARAM)index);
376
using GetDcScope hdc = new(
_owningChildEdit
.Handle);