The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
PropertyConditionFlags Enumeration
.NET Framework (current version)
Contains values that specify how a property value is tested in a PropertyCondition.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: UIAutomationClient (in UIAutomationClient.dll)
| Member name | Description | |
|---|---|---|
| IgnoreCase | Specifies that comparison with a string property value is not case-sensitive. | |
| None | Specifies that the property value is tested using default behavior (case-sensitive comparison for strings). |
In the following example, IgnoreCase is set in a PropertyCondition.
''' <summary> ''' Find a UI Automation child element by ID. ''' </summary> ''' <param name="controlName">Name of the control, such as "button1"</param> ''' <param name="rootElement">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 Function FindChildElement(ByVal controlName As String, ByVal rootElement As AutomationElement) _ As AutomationElement If controlName = "" OrElse rootElement Is Nothing Then Throw New ArgumentException("Argument cannot be null or empty.") End If ' 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. Dim propCondition As New PropertyCondition(AutomationElement.AutomationIdProperty, _ controlName, PropertyConditionFlags.IgnoreCase) ' Find the element. Return rootElement.FindFirst(TreeScope.Element Or TreeScope.Children, propCondition) End Function 'FindChildElement
.NET Framework
Available since 3.0
Available since 3.0
Show: