Compartir a través de


Tablets.Item (Propiedad)

Actualización: noviembre 2007

Obtiene el objeto Tablet en el índice especificado de la colección Tablets.

Espacio de nombres:  Microsoft.Ink
Ensamblado:  Microsoft.Ink (en Microsoft.Ink.dll)

Sintaxis

'Declaración
Public ReadOnly Property Item ( _
    index As Integer _
) As Tablet
'Uso
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 no admite propiedades indizadas.

Parámetros

Valor de propiedad

Tipo: Microsoft.Ink.Tablet
Objeto Tablet situado en el índice especificado de la colección Tablets.

Comentarios

Se genera una excepción ArgumentOutOfRangeException si el parámetro index no coincide con un miembro existente de la colección Tablets.

Nota

Esta propiedad no está disponible al utilizar C#. En su lugar, debe utilizar el indizador de la colección tal como se muestra en el ejemplo siguiente.

Ejemplos

En este ejemplo se obtiene el primer objeto Tablet de la colección 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];

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

Tablets (Clase)

Tablets (Miembros)

Microsoft.Ink (Espacio de nombres)

Tablet