Condividi tramite


Proprietà Tablets.Item

Aggiornamento: novembre 2007

Ottiene l'oggetto Tablet in corrispondenza dell'indice specificato all'interno dell'insieme Tablets.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Item ( _
    index As Integer _
) As Tablet
'Utilizzo
Dim instance As Tablets
Dim index As Integer
Dim value As Tablet

value = instance.Item(index)
public Tablet Item[
    int index
] { get; }
public:
property Tablet^ Item[int index] {
    Tablet^ get (int index);
}
/** @property */
public Tablet get_Item(
    int index
)
JScript non supporta le proprietà indicizzate.

Parametri

Valore proprietà

Tipo: Microsoft.Ink.Tablet
Oggetto Tablet in corrispondenza dell'indice specificato all'interno dell'insieme Tablets.

Note

Viene generata un'eccezione ArgumentOutOfRangeException se index non corrisponde a un membro esistente dell'insieme Tablets.

Nota

Questa proprietà non è disponibile se si utilizza C#. In questo caso, è necessario utilizzare l'indicizzatore dell'insieme come illustrato nell'esempio seguente.

Esempi

In questo esempio si ottiene il primo oggetto Tablet dall'insieme Tablets, allTablets.

' get the first tablet
Dim FirstTablet1 As Tablet = New Tablets().Item(0)
' or another way to do it
Dim allTablets As Tablets = New Tablets()
Dim FirstTablet2 As Tablet = allTablets.Item(0)
' yet another way
Dim FirstTablet3 As Tablet = allTablets(0)
' the following does not compile, 
' indexer is not available directly from the .ctor in VB
' Dim FirstTablet4 As Tablet = New Tablets()(0)
// get the first tablet
Tablet FirstTablet1 = new Tablets()[0];
// or another way to do it
Tablets allTablets = new Tablets();
Tablet FirstTablet2 = allTablets[0];
// the following does not compile, Item is not available in C#
// Tablet FirstTablet3 = allTablets.Items[0];

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

Tablets Classe

Membri Tablets

Spazio dei nomi Microsoft.Ink

Tablet