31 references to SupportedTextSelection
System.Windows.Forms (14)
System\Windows\Forms\Accessibility\AccessibleObject.cs (4)
798internal virtual SupportedTextSelection SupportedTextSelectionInternal 803return SupportedTextSelection.SupportedTextSelection_None; 1346SupportedTextSelection ITextProvider.Interface.SupportedTextSelection => SupportedTextSelectionInternal; 1360SupportedTextSelection ITextProvider2.Interface.SupportedTextSelection => SupportedTextSelectionInternal;
System\Windows\Forms\Accessibility\LabelEditAccessibleObject.cs (1)
97internal override SupportedTextSelection SupportedTextSelectionInternal
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (2)
62public override SupportedTextSelection SupportedTextSelection => SupportedTextSelection.SupportedTextSelection_Single;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildEditUiaProvider.cs (1)
119internal override SupportedTextSelection SupportedTextSelectionInternal => _textProvider.SupportedTextSelection;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (2)
96public override SupportedTextSelection SupportedTextSelection => SupportedTextSelection.SupportedTextSelection_Single;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (2)
112internal override SupportedTextSelection SupportedTextSelectionInternal 113=> _textProvider?.SupportedTextSelection ?? SupportedTextSelection.SupportedTextSelection_None;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (2)
154public override SupportedTextSelection SupportedTextSelection => SupportedTextSelection.SupportedTextSelection_Single;
System.Windows.Forms.Primitives (13)
System\Windows\Forms\Automation\UiaTextProvider.cs (1)
29public abstract SupportedTextSelection SupportedTextSelection { get; }
Windows.Win32.ITextProvider.g.cs (6)
239 private static winmdroot.Foundation.HRESULT get_SupportedTextSelection(ITextProvider* pThis, winmdroot.UI.Accessibility.SupportedTextSelection* pRetVal) 262 internal winmdroot.UI.Accessibility.SupportedTextSelection SupportedTextSelection 266 winmdroot.UI.Accessibility.SupportedTextSelection __result; 267 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 309 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT> get_SupportedTextSelection_9; 357 winmdroot.UI.Accessibility.SupportedTextSelection SupportedTextSelection
Windows.Win32.ITextProvider2.g.cs (6)
197 private static winmdroot.Foundation.HRESULT get_SupportedTextSelection(ITextProvider2* pThis, winmdroot.UI.Accessibility.SupportedTextSelection* pRetVal) 215 internal winmdroot.UI.Accessibility.SupportedTextSelection SupportedTextSelection 219 winmdroot.UI.Accessibility.SupportedTextSelection __result; 220 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextProvider2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 349 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT> get_SupportedTextSelection_9; 403 new winmdroot.UI.Accessibility.SupportedTextSelection SupportedTextSelection
System.Windows.Forms.Tests (4)
System\Windows\Forms\ComboBox.ComboBoxUiaTextProviderTests.cs (2)
194SupportedTextSelection uiaTextRange = provider.SupportedTextSelection; 196Assert.Equal(SupportedTextSelection.SupportedTextSelection_Single, uiaTextRange);
System\Windows\Forms\TextBoxBase.TextBoxBaseUiaTextProviderTests.cs (2)
129SupportedTextSelection uiaTextRange = provider.SupportedTextSelection; 130Assert.Equal(SupportedTextSelection.SupportedTextSelection_Single, uiaTextRange);