This documentation is archived and is not being maintained.
PropertyConditionFlags Enumeration
Visual Studio 2008
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.
Namespace: System.Windows.AutomationAssembly: UIAutomationClient (in UIAutomationClient.dll)
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
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: