1 instantiation of UiaPoint
System.Windows.Forms.Primitives (1)
Windows\Win32\UI\Accessibility\UiaPoint.cs (1)
12
public static implicit operator UiaPoint(Point value) =>
new
() { x = value.X, y = value.Y };
22 references to UiaPoint
System.Windows.Forms (9)
System\Windows\Forms\Accessibility\AccessibleObject.cs (3)
796
internal virtual HRESULT GetTextRangeFromPoint(
UiaPoint
screenLocation, ITextRangeProvider** pRetVal) => HRESULT.E_NOTIMPL;
1343
HRESULT ITextProvider.Interface.RangeFromPoint(
UiaPoint
point, ITextRangeProvider** pRetVal)
1357
HRESULT ITextProvider2.Interface.RangeFromPoint(
UiaPoint
point, ITextRangeProvider** pRetVal)
System\Windows\Forms\Accessibility\LabelEditAccessibleObject.cs (1)
94
internal override HRESULT GetTextRangeFromPoint(
UiaPoint
screenLocation, ITextRangeProvider** pRetVal)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
261
public override HRESULT RangeFromPoint(
UiaPoint
point, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildEditUiaProvider.cs (1)
116
internal override unsafe HRESULT GetTextRangeFromPoint(
UiaPoint
screenLocation, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
328
public override HRESULT RangeFromPoint(
UiaPoint
point, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
109
internal override HRESULT GetTextRangeFromPoint(
UiaPoint
screenLocation, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
93
public override HRESULT RangeFromPoint(
UiaPoint
point, ITextRangeProvider** pRetVal)
System.Windows.Forms.Primitives (13)
System\Windows\Forms\Automation\UiaTextProvider.cs (1)
25
public abstract HRESULT RangeFromPoint(
UiaPoint
point, ITextRangeProvider** pRetVal);
Windows.Win32.ITextProvider.g.cs (5)
166
private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextProvider* pThis, winmdroot.UI.Accessibility.
UiaPoint
point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal)
196
public unsafe winmdroot.UI.Accessibility.ITextRangeProvider* RangeFromPoint(winmdroot.UI.Accessibility.
UiaPoint
point)
199
((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.
UiaPoint
,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextProvider*)Unsafe.AsPointer(ref this), point, &__retVal).ThrowOnFailure();
305
internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.
UiaPoint
,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromPoint_7;
350
unsafe winmdroot.Foundation.HRESULT RangeFromPoint(winmdroot.UI.Accessibility.
UiaPoint
point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal);
Windows.Win32.ITextProvider2.g.cs (5)
139
private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextProvider2* pThis, winmdroot.UI.Accessibility.
UiaPoint
point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal)
156
public unsafe winmdroot.UI.Accessibility.ITextRangeProvider* RangeFromPoint(winmdroot.UI.Accessibility.
UiaPoint
point)
159
((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.
UiaPoint
,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextProvider2*)Unsafe.AsPointer(ref this), point, &__retVal).ThrowOnFailure();
345
internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.
UiaPoint
,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromPoint_7;
396
unsafe new winmdroot.Foundation.HRESULT RangeFromPoint(winmdroot.UI.Accessibility.
UiaPoint
point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal);
Windows\Win32\UI\Accessibility\UiaPoint.cs (2)
10
public static implicit operator Point(
UiaPoint
value) => new((int)value.x, (int)value.y);
12
public static implicit operator
UiaPoint
(Point value) => new() { x = value.X, y = value.Y };