1 instantiation of UiaPoint
System.Windows.Forms.Primitives (1)
Windows\Win32\UI\Accessibility\UiaPoint.cs (1)
12public 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)
796internal virtual HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal) => HRESULT.E_NOTIMPL; 1343HRESULT ITextProvider.Interface.RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal) 1357HRESULT ITextProvider2.Interface.RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal)
System\Windows\Forms\Accessibility\LabelEditAccessibleObject.cs (1)
94internal override HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
261public override HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildEditUiaProvider.cs (1)
116internal override unsafe HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
328public override HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
109internal override HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
93public override HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal)
System.Windows.Forms.Primitives (3)
System\Windows\Forms\Automation\UiaTextProvider.cs (1)
25public abstract HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal);
Windows\Win32\UI\Accessibility\UiaPoint.cs (2)
10public static implicit operator Point(UiaPoint value) => new((int)value.x, (int)value.y); 12public static implicit operator UiaPoint(Point value) => new() { x = value.X, y = value.Y };