8 references to IsSelectionRequiredProperty
UIAutomationClient (3)
MS\Internal\Automation\Schema.cs (2)
349
new AutomationPropertyInfo( convertToBool, SelectionPattern.
IsSelectionRequiredProperty
, typeof(bool), false ),
431
SelectionPattern.
IsSelectionRequiredProperty
};
System\Windows\Automation\SelectionPattern.cs (1)
251
return (bool)_el.GetPatternPropertyValue(
IsSelectionRequiredProperty
, _useCache);
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (2)
280
RaisePropertyChangedEvent(el, SelectionPattern.
IsSelectionRequiredProperty
, selection.IsSelectionRequired);
529
_objectIdClient.Add(SelectionPattern.
IsSelectionRequiredProperty
, new RaiseEvent(HandleIsSelectionRequiredProperty));
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
405
if (idProp == SelectionPattern.
IsSelectionRequiredProperty
&& !IsMultipleSelection() && !HasSelection())
454
if ((eventId == NativeMethods.EventObjectSelection || eventId == NativeMethods.EventObjectSelectionAdd) && (idProp as AutomationProperty) == SelectionPattern.
IsSelectionRequiredProperty
)
457
WinEventTracker.EvtIdProperty[] aEvtIdProperties = new WinEventTracker.EvtIdProperty[] { new WinEventTracker.EvtIdProperty(NativeMethods.EventObjectSelection, SelectionPattern.
IsSelectionRequiredProperty
) };