ExpandCollapsePattern.ExpandCollapseStateProperty Pole
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Identyfikuje ExpandCollapseState właściwość .
public: static initonly System::Windows::Automation::AutomationProperty ^ ExpandCollapseStateProperty;
public static readonly System.Windows.Automation.AutomationProperty ExpandCollapseStateProperty;
staticval mutable ExpandCollapseStateProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly ExpandCollapseStateProperty As AutomationProperty
Wartość pola
Przykłady
W poniższym przykładzie element główny jest przekazywany do funkcji, która zwraca kolekcję elementów automatyzacji interfejsu użytkownika, które są elementami podrzędnymi katalogu głównego i spełniają zestaw warunków właściwości.
///--------------------------------------------------------------------
/// <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 conditionLeafNode =
new PropertyCondition(
ExpandCollapsePattern.ExpandCollapseStateProperty,
ExpandCollapseState.LeafNode);
return targetApp.FindAll(
TreeScope.Descendants, conditionLeafNode);
}
'''--------------------------------------------------------------------
''' <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 conditionLeafNode As New PropertyCondition( _
ExpandCollapsePattern.ExpandCollapseStateProperty, _
ExpandCollapseState.LeafNode)
Return targetApp.FindAll(TreeScope.Descendants, conditionLeafNode)
End Function 'FindAutomationElement
Uwagi
Ten identyfikator jest używany przez aplikacje klienckie automatyzacji interfejsu użytkownika. Dostawcy automatyzacji interfejsu użytkownika powinni używać odpowiedniego pola w elemencie ExpandCollapsePatternIdentifiers.
ExpandCollapseState odnosi się do widoczności tylko natychmiastowych obiektów podrzędnych; nie odnosi się do widoczności wszystkich obiektów podrzędnych.
Wartość domyślna to Expanded.