4 overrides of IsSelectionRequired
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildListUiaProvider.cs (1)
171
internal override bool
IsSelectionRequired
=> true;
System\Windows\Forms\Controls\ListBoxes\ListBox.AccessibleObject.cs (1)
36
internal override bool
IsSelectionRequired
System\Windows\Forms\Controls\TabControl\TabControl.TabControlAccessibleObject.cs (1)
42
internal override bool
IsSelectionRequired
=> true;
System\Windows\Forms\Controls\TreeView\TreeView.TreeViewAccessibleObject.cs (1)
110
internal override bool
IsSelectionRequired
=> this.TryGetOwnerAs(out TreeView? owningTreeView) &&
2 references to IsSelectionRequired
System.Windows.Forms (2)
System\Windows\Forms\Accessibility\AccessibleObject.cs (2)
645
UIA_PROPERTY_ID.UIA_SelectionIsSelectionRequiredPropertyId => (VARIANT)
IsSelectionRequired
,
3157
*pRetVal =
IsSelectionRequired
? BOOL.TRUE : BOOL.FALSE;