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 };
12 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 (3)
System\Windows\Forms\Automation\UiaTextProvider.cs (1)
25
public abstract HRESULT RangeFromPoint(
UiaPoint
point, 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 };