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