AutomationElementCollection.Item[Int32] Proprietà

Definizione

Ottiene AutomationElement in corrispondenza dell'indice specificato.

public:
 property System::Windows::Automation::AutomationElement ^ default[int] { System::Windows::Automation::AutomationElement ^ get(int index); };
public System.Windows.Automation.AutomationElement this[int index] { get; }
member this.Item(int) : System.Windows.Automation.AutomationElement
Default Public ReadOnly Property Item(index As Integer) As AutomationElement

Parametri

index
Int32

Indice in base zero dell'elemento nell'insieme.

Valore della proprietà

AutomationElement

Oggetto AutomationElement in corrispondenza dell'indice specificato.

Eccezioni

È stato specificato un numero intero negativo per index o index è maggiore o uguale a Count.

Esempio

Nell'esempio seguente il primo elemento viene recuperato da un AutomationElementCollectionoggetto .

// desktopChildren is a collection of AutomationElement objects.
AutomationElement firstWindow;
try
{
    firstWindow = desktopChildren[0];
}
catch (IndexOutOfRangeException)
{
    Console.WriteLine("No AutomationElement at that index.");
}
' desktopChildren is a collection of AutomationElement objects.
Dim firstWindow As AutomationElement
Try
    firstWindow = desktopChildren(0)
Catch ex As IndexOutOfRangeException
    Console.WriteLine("No AutomationElement at that index.")
End Try

Si applica a