SelectionItemPattern.Pattern 필드

정의

SelectionItemPattern 컨트롤 패턴을 식별합니다.

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

필드 값

AutomationPattern

예제

다음 예제에서는 SelectionItemPattern 컨트롤 패턴에서 가져온는 AutomationElement합니다.

///--------------------------------------------------------------------
/// <summary>
/// Obtains a SelectionItemPattern control pattern from an 
/// automation element.
/// </summary>
/// <param name="targetControl">
/// The automation element of interest.
/// </param>
/// <returns>
/// A SelectionItemPattern object.
/// </returns>
///--------------------------------------------------------------------
private SelectionItemPattern GetSelectionItemPattern(
    AutomationElement targetControl)
{
    SelectionItemPattern selectionItemPattern = null;

    try
    {
        selectionItemPattern =
            targetControl.GetCurrentPattern(
            SelectionItemPattern.Pattern)
            as SelectionItemPattern;
    }
    // Object doesn't support the 
    // SelectionItemPattern control pattern
    catch (InvalidOperationException)
    {
        return null;
    }

    return selectionItemPattern;
}
'''--------------------------------------------------------------------
''' <summary>
''' Obtains a SelectionItemPattern control pattern from an 
''' automation element.
''' </summary>
''' <param name="targetControl">
''' The automation element of interest.
''' </param>
''' <returns>
''' A SelectionItemPattern object.
''' </returns>
'''--------------------------------------------------------------------
Private Function GetSelectionItemPattern( _
ByVal targetControl As AutomationElement) As SelectionItemPattern
    Dim selectionItemPattern As SelectionItemPattern = Nothing

    Try
        selectionItemPattern = DirectCast( _
        targetControl.GetCurrentPattern(selectionItemPattern.Pattern), _
        SelectionItemPattern)
    Catch
        ' Object doesn't support the SelectionItemPattern control pattern
        Return Nothing
    End Try

    Return selectionItemPattern
End Function 'GetSelectionItemPattern

설명

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

패턴 식별자를 같은 메서드에 전달 GetCurrentPattern 지정 된 위치에서 원하는 컨트롤 패턴을 검색할 AutomationElement합니다.

적용 대상