Condividi tramite


Proprietà InkAnalyzer.Ink

Aggiornamento: novembre 2007

Ottiene l'oggetto Ink dal quale l'oggetto InkAnalyzer può analizzare i dati relativi al tratto.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Ink As Ink
'Utilizzo
Dim instance As InkAnalyzer
Dim value As Ink

value = instance.Ink
public Ink Ink { get; }
public:
property Ink^ Ink {
    Ink^ get ();
}
/** @property */
public Ink get_Ink()
public function get Ink () : Ink

Valore proprietà

Tipo: Microsoft.Ink.Ink
Oggetto Ink dal quale l'oggetto InkAnalyzer può analizzare i dati relativi al tratto.

Note

L'oggetto InkAnalyzer può analizzare i dati del tratto di un solo oggetto Ink. Non è possibile modificare questa associazione una volta inizializzato l'analizzatore dell'input penna.

Esempi

In questo esempio vengono rimossi tutti i tratti associati a un oggetto InkAnalyzer, theInkAnalyzer.. Vengono quindi eliminati i tratti dall'oggetto Ink associato.

' Get all the strokes associated with the ink analyzer.
Dim theStrokes As Microsoft.Ink.Strokes = Me.theInkAnalyzer.RootNode.Strokes

If Nothing IsNot theStrokes Then
    ' Remove the strokes from the analyzer.
    Me.theInkAnalyzer.RemoveStrokes(theStrokes)

    ' Deleted the strokes from the associated Ink object.
    Me.theInkAnalyzer.Ink.DeleteStrokes(theStrokes)
End If
// Get all the strokes associated with the ink analyzer.
Microsoft.Ink.Strokes theStrokes = this.theInkAnalyzer.RootNode.Strokes;

if (null != theStrokes)
{
    // Remove the strokes from the analyzer.
    this.theInkAnalyzer.RemoveStrokes(theStrokes);

    // Deleted the strokes from the associated Ink object.
    this.theInkAnalyzer.Ink.DeleteStrokes(theStrokes);
}

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

InkAnalyzer Classe

Membri InkAnalyzer

Spazio dei nomi Microsoft.Ink