31 references to SupportedTextSelection
System.Windows.Forms (14)
System\Windows\Forms\Accessibility\AccessibleObject.cs (4)
798
internal virtual
SupportedTextSelection
SupportedTextSelectionInternal
803
return
SupportedTextSelection
.SupportedTextSelection_None;
1346
SupportedTextSelection
ITextProvider.Interface.SupportedTextSelection => SupportedTextSelectionInternal;
1360
SupportedTextSelection
ITextProvider2.Interface.SupportedTextSelection => SupportedTextSelectionInternal;
System\Windows\Forms\Accessibility\LabelEditAccessibleObject.cs (1)
97
internal override
SupportedTextSelection
SupportedTextSelectionInternal
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (2)
62
public override
SupportedTextSelection
SupportedTextSelection =>
SupportedTextSelection
.SupportedTextSelection_Single;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildEditUiaProvider.cs (1)
119
internal override
SupportedTextSelection
SupportedTextSelectionInternal => _textProvider.SupportedTextSelection;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (2)
96
public override
SupportedTextSelection
SupportedTextSelection =>
SupportedTextSelection
.SupportedTextSelection_Single;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (2)
112
internal override
SupportedTextSelection
SupportedTextSelectionInternal
113
=> _textProvider?.SupportedTextSelection ??
SupportedTextSelection
.SupportedTextSelection_None;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (2)
154
public override
SupportedTextSelection
SupportedTextSelection =>
SupportedTextSelection
.SupportedTextSelection_Single;
System.Windows.Forms.Primitives (13)
System\Windows\Forms\Automation\UiaTextProvider.cs (1)
29
public 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)
194
SupportedTextSelection
uiaTextRange = provider.SupportedTextSelection;
196
Assert.Equal(
SupportedTextSelection
.SupportedTextSelection_Single, uiaTextRange);
System\Windows\Forms\TextBoxBase.TextBoxBaseUiaTextProviderTests.cs (2)
129
SupportedTextSelection
uiaTextRange = provider.SupportedTextSelection;
130
Assert.Equal(
SupportedTextSelection
.SupportedTextSelection_Single, uiaTextRange);