Proprietà InkRecognizerCollection.Item
Aggiornamento: novembre 2007
Ottiene l'elemento in corrispondenza dell'indice specificato.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property Item ( _
index As Integer _
) As InkRecognizer
'Utilizzo
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 non supporta le proprietà indicizzate.
Parametri
- index
Tipo: System.Int32
Indice in base zero dell'elemento da ottenere.
Valore proprietà
Tipo: Microsoft.Ink.InkRecognizer
Elemento in corrispondenza dell'indice specificato.
Note
Nota In C#, utilizzare l'indicizzatore dell'insieme come illustrato nell'esempio di C#, anziché la proprietà Item dell'insieme.
Esempi
Nell'esempio seguente si ottiene il primo sistema di riconoscimento nell'oggetto InkRecognizerCollection, theInkRecognizerCollection, se l'insieme non è vuoto. In questo esempio viene inoltre verificato se l'insieme è sincronizzato.
' Create a collection of the recognizers installed on this Tablet PC.
Dim theInkRecognizerCollection As Microsoft.Ink.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 Microsoft.Ink.InkRecognizer = _
theInkRecognizerCollection.Item(0)
' Check if the recognizers collection is synchronized.
If (theInkRecognizerCollection.IsSynchronized) Then
' Insert code here.
End If
End If
// Create a collection of the recognizers installed on this Tablet PC.
Microsoft.Ink.InkRecognizerCollection theInkRecognizerCollection =
theInkAnalyzer.GetInkRecognizersByPriority();
// Check if there are recognizers in the collection.
if (0 < theInkRecognizerCollection.Count)
{
// Get the first recognizer in the collection.
Microsoft.Ink.InkRecognizer theFirstInkRecognizer =
theInkRecognizerCollection[0];
// Insert code here.
}
// Check if the recognizers collection is synchronized.
if (theInkRecognizerCollection.IsSynchronized)
{
// Insert code here.
}
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
InkRecognizerCollection Classe