PropertyConditionFlags Enumeration
.NET Framework 3.0
Contains values that specify how a property value is tested in a PropertyCondition.
Assembly: UIAutomationClient (in uiautomationclient.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Windows.AutomationAssembly: UIAutomationClient (in uiautomationclient.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: