TablePattern.RowOrColumnMajorProperty Field

Definition

Identifies the RowOrColumnMajor property.

C#
public static readonly System.Windows.Automation.AutomationProperty RowOrColumnMajorProperty;

Field Value

Examples

In the following example, a root element is passed to a function that returns a collection of AutomationElement objects that are descendants of the root and satisfy a set of property conditions. This example retrieves the AutomationElements that support TablePattern and where the RowOrColumnMajorProperty is either Indeterminate or ColumnMajor.

C#
///--------------------------------------------------------------------
/// <summary>
/// Finds all automation elements that satisfy 
/// the specified condition(s).
/// </summary>
/// <param name="targetApp">
/// The automation element from which to start searching.
/// </param>
/// <returns>
/// A collection of automation elements satisfying 
/// the specified condition(s).
/// </returns>
///--------------------------------------------------------------------
private AutomationElementCollection FindAutomationElement(
    AutomationElement targetApp)
{
    if (targetApp == null)
    {
        throw new ArgumentException("Root element cannot be null.");
    }

    PropertyCondition conditionSupportsTablePattern =
        new PropertyCondition(
        AutomationElement.IsTablePatternAvailableProperty, true);

    PropertyCondition conditionIndeterminateTraversal =
        new PropertyCondition(
        TablePattern.RowOrColumnMajorProperty,
        RowOrColumnMajor.Indeterminate);

    PropertyCondition conditionRowColumnTraversal =
        new PropertyCondition(
        TablePattern.RowOrColumnMajorProperty,
        RowOrColumnMajor.ColumnMajor);

    AndCondition conditionTable =
        new AndCondition(
        conditionSupportsTablePattern,
        new OrCondition(
        conditionIndeterminateTraversal,
        conditionRowColumnTraversal));

    return targetApp.FindAll(
        TreeScope.Descendants, conditionTable);
}

Remarks

This identifier is used by UI Automation client applications. UI Automation providers should use the equivalent field in TablePatternIdentifiers.

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

See also