Partager via


InkRecognizerCollection.Item, propriété

Mise à jour : November 2007

Obtient l'élément au niveau d'index spécifié.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.dll)

Syntaxe

'Déclaration
Public ReadOnly Property Item ( _
    index As Integer _
) As InkRecognizer
'Utilisation
Dim instance As InkRecognizerCollection
Dim index As Integer
Dim value As InkRecognizer

value = instance.Item(index)
public InkRecognizer Item[
    int index
] { get; }
public:
property InkRecognizer^ Item[int index] {
    InkRecognizer^ get (int index);
}
/** @property */
public InkRecognizer 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'élément à obtenir.

Valeur de propriété

Type : System.Windows.Ink.InkRecognizer
Élément à l'index spécifié.

Notes

Remarque En C#, utilisez l'indexeur de la collection tel qu'indiqué dans l'exemple C#, plutôt que la propriété Item de la collection.

Exemples

L'exemple suivant obtient le premier module de reconnaissance dans le InkRecognizerCollection, theInkRecognizerCollection, si la collection n'est pas vide. Cet exemple vérifie également si la collection est synchronisée.

' Get a collection of the recognizers installed on this Tablet PC.
Dim theInkRecognizerCollection As InkRecognizerCollection = _
    theInkAnalyzer.GetInkRecognizersByPriority()
' Check if there are recognizers in the collection.
If 0 < theInkRecognizerCollection.Count Then

    ' Get the first recognizer in the collection.
    Dim theFirstInkRecognizer As InkRecognizer = theInkRecognizerCollection(0)

    ' Insert code here.

End If

' Check if the recognizers collection is synchronized.
If theInkRecognizerCollection.IsSynchronized Then
    ' Insert code here.
End If
// Create a collection of the recognizers installed on this Tablet PC.
InkRecognizerCollection theInkRecognizerCollection =
    theInkAnalyzer.GetInkRecognizersByPriority();

// Check if there are recognizers in the collection.
if (0 < theInkRecognizerCollection.Count)
{
    // Get the first recognizer in the collection.
    InkRecognizer theFirstInkRecognizer =
        theInkRecognizerCollection[0];

    // Insert code here.
}

// Check if the recognizers collection is synchronized.
if (theInkRecognizerCollection.IsSynchronized)
{
    // Insert code here.
}

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

Voir aussi

Référence

InkRecognizerCollection, classe

Membres InkRecognizerCollection

System.Windows.Ink, espace de noms