OrCondition.GetConditions Method

Definition

Retrieves the conditions that are combined in this condition.

C#
public System.Windows.Automation.Condition[] GetConditions();

Returns

The conditions combined in this condition.

Examples

The following example function constructs an OrCondition and then displays the number of subconditions that it contains.

C#
/// <summary>
/// Uses OrCondition to retrieve elements that match either of two conditions.
/// </summary>
/// <param name="elementMainWindow">An application window element.</param>
public void OrConditionExample(AutomationElement elementMainWindow)
{
    if (elementMainWindow == null)
    {
        throw new ArgumentException();
    }

    OrCondition conditionButtons = new OrCondition(
        new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Button),
        new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.RadioButton));
    AutomationElementCollection elementCollectionButtons = elementMainWindow.FindAll(
        TreeScope.Subtree, conditionButtons);
    Console.WriteLine("\nButtons and radio buttons:");
    foreach (AutomationElement autoElement in elementCollectionButtons)
    {
        Console.WriteLine(autoElement.Current.Name);
    }

    // Example of getting the conditions from the OrCondition.
    Condition[] conditions = conditionButtons.GetConditions();
    Console.WriteLine("OrCondition has " + conditions.GetLength(0) + " subconditions.");
}

Remarks

The returned array is a copy. Modifying it does not affect the state of the condition.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10