TablePattern.RowOrColumnMajorProperty 필드

정의

RowOrColumnMajor 속성을 식별합니다.

public: static initonly System::Windows::Automation::AutomationProperty ^ RowOrColumnMajorProperty;
public static readonly System.Windows.Automation.AutomationProperty RowOrColumnMajorProperty;
 staticval mutable RowOrColumnMajorProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly RowOrColumnMajorProperty As AutomationProperty 

필드 값

예제

다음 예제에서는 루트 요소 컬렉션을 반환 하는 함수에 전달 됩니다 AutomationElement 루트의 후손이 속성 조건 집합을 만족 하는 개체입니다. 이 예제에서는 검색 합니다 AutomationElement지 s TablePattern 및 위치를 RowOrColumnMajorPropertyIndeterminate 또는 ColumnMajor합니다.

///--------------------------------------------------------------------
/// <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);
}
'''--------------------------------------------------------------------
''' <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 Function FindAutomationElement( _
ByVal targetApp As AutomationElement) As AutomationElementCollection
    If targetApp Is Nothing Then
        Throw New ArgumentException("Root element cannot be null.")
    End If

    Dim conditionSupportsTablePattern As New PropertyCondition( _
    AutomationElement.IsTablePatternAvailableProperty, True)

    Dim conditionIndeterminateTraversal As New PropertyCondition( _
    TablePattern.RowOrColumnMajorProperty, RowOrColumnMajor.Indeterminate)

    Dim conditionRowColumnTraversal As New PropertyCondition( _
    TablePattern.RowOrColumnMajorProperty, RowOrColumnMajor.ColumnMajor)

    Dim conditionTable As New AndCondition( _
    conditionSupportsTablePattern, _
    New OrCondition(conditionIndeterminateTraversal, _
    conditionRowColumnTraversal))

    Return targetApp.FindAll(TreeScope.Descendants, conditionTable)

End Function 'FindAutomationElement

설명

이 식별자는 UI 자동화 클라이언트 애플리케이션에서 사용 됩니다. UI 자동화 공급자의 해당 필드를 사용 해야 TablePatternIdentifiers합니다.

적용 대상

추가 정보