10 references to GetCurrentPropertyValue
UIAutomationClient (10)
MS\Internal\Automation\FocusTracker.cs (1)
111if (!(bool)srcEl.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty))
System\Windows\Automation\Automation.cs (1)
198object val = element.GetCurrentPropertyValue(AutomationElement.NativeWindowHandleProperty);
System\Windows\Automation\AutomationElement.cs (3)
924object canReceiveFocus = GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty); 952object ptClickable = GetCurrentPropertyValue(AutomationElement.ClickablePointProperty); 1249return GetCurrentPropertyValue(property);
System\Windows\Automation\RangeValuePattern.cs (2)
105object enabled = _el.GetCurrentPropertyValue(AutomationElementIdentifiers.IsEnabledProperty); 112object readOnly = _el.GetCurrentPropertyValue(IsReadOnlyProperty);
System\Windows\Automation\TextPattern.cs (1)
232Rect rect = (Rect)_element.GetCurrentPropertyValue(AutomationElement.BoundingRectangleProperty);
System\Windows\Automation\ValuePattern.cs (2)
91object enabled = _el.GetCurrentPropertyValue(AutomationElementIdentifiers.IsEnabledProperty); 98object readOnly = _el.GetCurrentPropertyValue(IsReadOnlyProperty);