SelectionPattern.IsSelectionRequiredProperty 필드

정의

IsSelectionRequired 속성을 식별합니다.

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

필드 값

AutomationProperty

예제

다음 예제에서는 루트 요소를 루트의 후손이 이며 속성 조건 집합을 만족 하는 UI 자동화 요소의 컬렉션을 반환 하는 함수에 전달 됩니다.

///--------------------------------------------------------------------
/// <summary>
/// Finds all automation elements that satisfy 
/// the specified condition(s).
/// </summary>
/// <param name="rootElement">
/// 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 rootElement)
{
    if (rootElement == null)
    {
        throw new ArgumentException("Root element cannot be null.");
    }

    PropertyCondition conditionCanSelectMultiple =
        new PropertyCondition(
        SelectionPattern.CanSelectMultipleProperty, true);

    PropertyCondition conditionIsSelectionRequired =
        new PropertyCondition(
        SelectionPattern.IsSelectionRequiredProperty, false);

    // Use any combination of the preceding condtions to 
    // find the control(s) of interest
    Condition condition = new AndCondition(
        conditionCanSelectMultiple,
        conditionIsSelectionRequired);

    return rootElement.FindAll(TreeScope.Descendants, condition);
}
'''--------------------------------------------------------------------
''' <summary>
''' Finds all automation elements that satisfy 
''' the specified condition(s).
''' </summary>
''' <param name="rootElement">
''' 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 rootElement As AutomationElement) As AutomationElementCollection
    If rootElement Is Nothing Then
        Throw New ArgumentException("Root element cannot be null.")
    End If

    Dim conditionCanSelectMultiple As New PropertyCondition( _
    SelectionPattern.CanSelectMultipleProperty, True)

    Dim conditionIsSelectionRequired As New PropertyCondition( _
    SelectionPattern.IsSelectionRequiredProperty, False)

    ' Use any combination of the preceding condtions to 
    ' find the control(s) of interest
    Dim condition As New AndCondition( _
    conditionCanSelectMultiple, conditionIsSelectionRequired)

    Return rootElement.FindAll(TreeScope.Descendants, condition)
End Function 'FindAutomationElement

설명

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

적용 대상