Share via


TreeWalker.GetNextSibling Método

Definición

Recupera el siguiente elemento del mismo nivel del objeto AutomationElement especificado.

Sobrecargas

GetNextSibling(AutomationElement, CacheRequest)

Recupera el siguiente elemento del siguiente nivel del objeto AutomationElement especificado y almacena en memoria caché propiedades y modelos.

GetNextSibling(AutomationElement)

Recupera el siguiente elemento del mismo nivel del objeto AutomationElement especificado.

Comentarios

Puede AutomationElement tener elementos relacionados adicionales que no coincidan con la condición de vista actual y, por tanto, no se devuelven al navegar por el árbol de elementos.

La estructura del AutomationElement árbol cambia a medida que cambian los elementos de la interfaz de usuario (UI) visibles en el escritorio. No se garantiza que un elemento devuelto como el siguiente elemento relacionado se devolverá como el siguiente elemento relacionado en los pasos posteriores.

GetNextSibling(AutomationElement, CacheRequest)

Recupera el siguiente elemento del siguiente nivel del objeto AutomationElement especificado y almacena en memoria caché propiedades y modelos.

public:
 System::Windows::Automation::AutomationElement ^ GetNextSibling(System::Windows::Automation::AutomationElement ^ element, System::Windows::Automation::CacheRequest ^ request);
public System.Windows.Automation.AutomationElement GetNextSibling (System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request);
member this.GetNextSibling : System.Windows.Automation.AutomationElement * System.Windows.Automation.CacheRequest -> System.Windows.Automation.AutomationElement
Public Function GetNextSibling (element As AutomationElement, request As CacheRequest) As AutomationElement

Parámetros

element
AutomationElement

Elemento del que se va a recuperar el siguiente elemento del mismo nivel.

request
CacheRequest

Objeto de solicitud de caché que especifica las propiedades y modelos del objeto AutomationElement devuelto para almacenar en memoria caché.

Devoluciones

El siguiente elemento del mismo nivel o una referencia nula (Nothing en Visual Basic) si no hay ese tipo de elemento.

Comentarios

Puede AutomationElement tener elementos relacionados adicionales que no coincidan con la condición de vista actual y, por tanto, no se devuelven al navegar por el árbol de elementos.

La estructura del AutomationElement árbol cambia a medida que cambian los elementos de la interfaz de usuario (UI) visibles en el escritorio. No se garantiza que un elemento devuelto como el siguiente elemento relacionado se devolverá como el siguiente elemento relacionado en los pasos posteriores.

Consulte también

Se aplica a

GetNextSibling(AutomationElement)

Recupera el siguiente elemento del mismo nivel del objeto AutomationElement especificado.

public:
 System::Windows::Automation::AutomationElement ^ GetNextSibling(System::Windows::Automation::AutomationElement ^ element);
public System.Windows.Automation.AutomationElement GetNextSibling (System.Windows.Automation.AutomationElement element);
member this.GetNextSibling : System.Windows.Automation.AutomationElement -> System.Windows.Automation.AutomationElement
Public Function GetNextSibling (element As AutomationElement) As AutomationElement

Parámetros

element
AutomationElement

AutomationElement del que se va a recuperar el siguiente elemento del mismo nivel.

Devoluciones

El siguiente elemento del mismo nivel o una referencia nula (Nothing en Visual Basic) si no hay ese tipo de elemento.

Ejemplos

En el ejemplo siguiente se muestra GetNextSibling que se usa para construir una vista de árbol de elementos en un subárbol.

/// <summary>
/// Walks the UI Automation tree and adds the control type of each element it finds 
/// in the control view to a TreeView.
/// </summary>
/// <param name="rootElement">The root of the search on this iteration.</param>
/// <param name="treeNode">The node in the TreeView for this iteration.</param>
/// <remarks>
/// This is a recursive function that maps out the structure of the subtree beginning at the
/// UI Automation element passed in as rootElement on the first call. This could be, for example,
/// an application window.
/// CAUTION: Do not pass in AutomationElement.RootElement. Attempting to map out the entire subtree of
/// the desktop could take a very long time and even lead to a stack overflow.
/// </remarks>
private void WalkControlElements(AutomationElement rootElement, TreeNode treeNode)
{
    // Conditions for the basic views of the subtree (content, control, and raw) 
    // are available as fields of TreeWalker, and one of these is used in the 
    // following code.
    AutomationElement elementNode = TreeWalker.ControlViewWalker.GetFirstChild(rootElement);

    while (elementNode != null)
    {
        TreeNode childTreeNode = treeNode.Nodes.Add(elementNode.Current.ControlType.LocalizedControlType);
        WalkControlElements(elementNode, childTreeNode);
        elementNode = TreeWalker.ControlViewWalker.GetNextSibling(elementNode);
    }
}
''' <summary>
''' Walks the UI Automation tree and adds the control type of each element it finds 
''' in the control view to a TreeView.
''' </summary>
''' <param name="rootElement">The root of the search on this iteration.</param>
''' <param name="treeNode">The node in the TreeView for this iteration.</param>
''' <remarks>
''' This is a recursive function that maps out the structure of the subtree beginning at the
''' UI Automation element passed in as rootElement on the first call. This could be, for example,
''' an application window.
''' CAUTION: Do not pass in AutomationElement.RootElement. Attempting to map out the entire subtree of
''' the desktop could take a very long time and even lead to a stack overflow.
''' </remarks>
Private Sub WalkControlElements(ByVal rootElement As AutomationElement, ByVal treeNode As TreeNode)
    ' Conditions for the basic views of the subtree (content, control, and raw) 
    ' are available as fields of TreeWalker, and one of these is used in the 
    ' following code.
    Dim elementNode As AutomationElement = TreeWalker.ControlViewWalker.GetFirstChild(rootElement)

    While (elementNode IsNot Nothing)
        Dim childTreeNode As TreeNode = treeNode.Nodes.Add(elementNode.Current.ControlType.LocalizedControlType)
        WalkControlElements(elementNode, childTreeNode)
        elementNode = TreeWalker.ControlViewWalker.GetNextSibling(elementNode)
    End While

End Sub

Comentarios

Puede AutomationElement tener elementos relacionados adicionales que no coincidan con la condición de vista actual y, por tanto, no se devuelven al navegar por el árbol de elementos.

La estructura del AutomationElement árbol cambia a medida que cambian los elementos de la interfaz de usuario (UI) visibles en el escritorio. No se garantiza que un elemento devuelto como el siguiente elemento relacionado se devolverá como el siguiente elemento relacionado en los pasos posteriores.

Consulte también

Se aplica a