Tablets.Item, propriété
Mise à jour : November 2007
Obtient l'objet Tablet à l'index spécifié dans la collection Tablets.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public ReadOnly Property Item ( _
index As Integer _
) As Tablet
'Utilisation
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 ne prend pas en charge les propriétés indexées.
Paramètres
- index
Type : System.Int32
Index de base zéro de l'objet Tablet à obtenir.
Valeur de propriété
Type : Microsoft.Ink.Tablet
Objet Tablet dont l'index est spécifié dans la collection Tablets.
Notes
Une ArgumentOutOfRangeException (page pouvant être en anglais) est levée si l'index ne correspond pas à un membre existant de la collection Tablets.
Remarque : |
---|
Cette propriété n'est pas disponible lors de l'utilisation du code C#. Utilisez plutôt l'indexeur de la collection, comme indiqué dans l'exemple suivant. |
Exemples
Cet exemple obtient le premier objet Tablet de la collection 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];
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0