10 references to GetCurrentPropertyValue
UIAutomationClient (10)
MS\Internal\Automation\FocusTracker.cs (1)
103if (!(bool)srcEl.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty))
System\Windows\Automation\Automation.cs (1)
159object val = element.GetCurrentPropertyValue(AutomationElement.NativeWindowHandleProperty);
System\Windows\Automation\AutomationElement.cs (3)
849object canReceiveFocus = GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty); 872object ptClickable = GetCurrentPropertyValue(AutomationElement.ClickablePointProperty); 1147return GetCurrentPropertyValue(property);
System\Windows\Automation\RangeValuePattern.cs (2)
89object enabled = _el.GetCurrentPropertyValue(AutomationElementIdentifiers.IsEnabledProperty); 96object readOnly = _el.GetCurrentPropertyValue(IsReadOnlyProperty);
System\Windows\Automation\TextPattern.cs (1)
218Rect rect = (Rect)_element.GetCurrentPropertyValue(AutomationElement.BoundingRectangleProperty);
System\Windows\Automation\ValuePattern.cs (2)
76object enabled = _el.GetCurrentPropertyValue(AutomationElementIdentifiers.IsEnabledProperty); 83object readOnly = _el.GetCurrentPropertyValue(IsReadOnlyProperty);