PropertyCondition Constructor (AutomationProperty, Object, PropertyConditionFlags)
Initializes a new instance of the PropertyCondition class, with flags.
Assembly: UIAutomationClient (in UIAutomationClient.dll)
public PropertyCondition(
AutomationProperty property,
Object value,
PropertyConditionFlags flags
)
Parameters
- property
- Type: System.Windows.Automation.AutomationProperty
The property to test.
- value
- Type: System.Object
The value to test the property for.
- flags
- Type: System.Windows.Automation.PropertyConditionFlags
Flags that affect the comparison.
The following example uses a PropertyCondition to retrieve the Microsoft UI Automation element representing the main form of an application. The form is located by a case-insensitive search for its string identifier.
/// <summary> /// Find a UI Automation child element by ID. /// </summary> /// <param name="controlName">Name of the control, such as "button1"</param> /// <param name="parentElement">Parent element, such as an application window, or the /// AutomationElement.RootElement when searching for the application window.</param> /// <returns>The UI Automation element.</returns> private AutomationElement FindChildElement(String controlName, AutomationElement rootElement) { if ((controlName == "") || (rootElement == null)) { throw new ArgumentException("Argument cannot be null or empty."); } // Set a property condition that will be used to find the main form of the // target application. In the case of a WinForms control, the name of the control // is also the AutomationId of the element representing the control. Condition propCondition = new PropertyCondition( AutomationElement.AutomationIdProperty, controlName, PropertyConditionFlags.IgnoreCase); // Find the element. return rootElement.FindFirst(TreeScope.Element | TreeScope.Children, propCondition); }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.