10 references to GetCurrentPropertyValue
UIAutomationClient (10)
MS\Internal\Automation\FocusTracker.cs (1)
102if (!(bool)srcEl.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty))
System\Windows\Automation\Automation.cs (1)
158object val = element.GetCurrentPropertyValue(AutomationElement.NativeWindowHandleProperty);
System\Windows\Automation\AutomationElement.cs (3)
848object canReceiveFocus = GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty); 871object ptClickable = GetCurrentPropertyValue(AutomationElement.ClickablePointProperty); 1146return GetCurrentPropertyValue(property);
System\Windows\Automation\RangeValuePattern.cs (2)
88object enabled = _el.GetCurrentPropertyValue(AutomationElementIdentifiers.IsEnabledProperty); 95object readOnly = _el.GetCurrentPropertyValue(IsReadOnlyProperty);
System\Windows\Automation\TextPattern.cs (1)
217Rect rect = (Rect)_element.GetCurrentPropertyValue(AutomationElement.BoundingRectangleProperty);
System\Windows\Automation\ValuePattern.cs (2)
75object enabled = _el.GetCurrentPropertyValue(AutomationElementIdentifiers.IsEnabledProperty); 82object readOnly = _el.GetCurrentPropertyValue(IsReadOnlyProperty);