Compartir a través de


InkRecognizerCollection.Item (Propiedad)

Actualización: noviembre 2007

Obtiene el elemento situado en el índice especificado.

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

Sintaxis

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

Parámetros

  • index
    Tipo: System.Int32
    El índice de base cero del elemento que se va a obtener.

Valor de propiedad

Tipo: Microsoft.Ink.InkRecognizer
Elemento en el índice especificado.

Comentarios

Nota: En C#, utilice el indizador de la colección como se muestra en el ejemplo de C#, en lugar de la propiedad Item de la colección.

Ejemplos

El ejemplo siguiente obtiene el primer reconocedor del objeto InkRecognizerCollection, theInkRecognizerCollection, si la colección no está vacía. En este ejemplo se comprueba también si la colección está sincronizada.

' 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.
            }

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

InkRecognizerCollection (Clase)

InkRecognizerCollection (Miembros)

Microsoft.Ink (Espacio de nombres)