8 references to IsSelectionRequiredProperty
UIAutomationClient (3)
MS\Internal\Automation\Schema.cs (2)
328
new AutomationPropertyInfo( convertToBool, SelectionPattern.
IsSelectionRequiredProperty
, typeof(bool), false ),
410
SelectionPattern.
IsSelectionRequiredProperty
};
System\Windows\Automation\SelectionPattern.cs (1)
278
return (bool)_el.GetPatternPropertyValue(
IsSelectionRequiredProperty
, _useCache);
UIAutomationClientsideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (2)
293
RaisePropertyChangedEvent(el, SelectionPattern.
IsSelectionRequiredProperty
, selection.IsSelectionRequired);
542
_objectIdClient.Add(SelectionPattern.
IsSelectionRequiredProperty
, new RaiseEvent(HandleIsSelectionRequiredProperty));
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
417
if (idProp == SelectionPattern.
IsSelectionRequiredProperty
&& !IsMultipleSelection() && !HasSelection())
466
if ((eventId == NativeMethods.EventObjectSelection || eventId == NativeMethods.EventObjectSelectionAdd) && (idProp as AutomationProperty) == SelectionPattern.
IsSelectionRequiredProperty
)
469
WinEventTracker.EvtIdProperty[] aEvtIdProperties = new WinEventTracker.EvtIdProperty[] { new WinEventTracker.EvtIdProperty(NativeMethods.EventObjectSelection, SelectionPattern.
IsSelectionRequiredProperty
) };