Metodo InkAnalyzer.AddStrokes (Strokes)
Aggiornamento: novembre 2007
Aggiunge un insieme di tratti all'oggetto InkAnalyzer e assegna a ogni tratto l'identificatore delle impostazioni locali del thread di input attivo.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Sintassi
'Dichiarazione
Public Function AddStrokes ( _
strokesToAdd As Strokes _
) As ContextNode
'Utilizzo
Dim instance As InkAnalyzer
Dim strokesToAdd As Strokes
Dim returnValue As ContextNode
returnValue = instance.AddStrokes(strokesToAdd)
public ContextNode AddStrokes(
Strokes strokesToAdd
)
public:
ContextNode^ AddStrokes(
Strokes^ strokesToAdd
)
public ContextNode AddStrokes(
Strokes strokesToAdd
)
public function AddStrokes(
strokesToAdd : Strokes
) : ContextNode
Parametri
- strokesToAdd
Tipo: Microsoft.Ink.Strokes
Oggetto Strokes da aggiungere a InkAnalyzer.
Valore restituito
Tipo: Microsoft.Ink.ContextNode
Oggetto ContextNode a cui è stato aggiunto l'oggetto strokesToAdd.
Note
L'oggetto InkAnalyzer aggiunge l'oggetto Strokes a un oggetto UnclassifiedInkNode nell'insieme SubNodes della proprietà RootNode. A ciascun tratto nell'insieme Strokes, strokesToAdd viene assegnato l'identificatore delle impostazioni locali del thread di input attivo e viene aggiunto al primo oggetto UnclassifiedInkNode contenente i tratti con lo stesso identificatore delle impostazioni locali. Se non esiste alcun oggetto UnclassifiedInkNode, viene creato un nuovo oggetto UnclassifiedInkNode e strokeToAdd viene aggiunto al nuovo oggetto UnclassifiedInkNode.
Questo metodo espande l'oggetto DirtyRegion all'unione del valore corrente dell'area e del riquadro dei tratti aggiunti.
Se un tratto è già associato all'oggetto InkAnalyzer, l'oggetto InkAnalyzer genera un'eccezione.
Esempi
In questo esempio vengono eseguite le operazioni seguenti.
Inizializza un nuovo oggetto Microsoft.Ink.Ink, theInk.
Associa un gestore eventi Ink.InkAdded, theInk_InkAdded all'oggetto theInk
Inizializza un nuovo oggetto InkAnalyzer, theInkAnalyzer che può analizzare i dati del tratto di theInk.
' Create the Ink for use with the InkCollector and attach
' event handlers.
Me.theInk = New Microsoft.Ink.Ink()
AddHandler Me.theInk.InkAdded, AddressOf theInk_InkAdded
' Create the InkAnalyzer.
Me.theInkAnalyzer = New Microsoft.Ink.InkAnalyzer(Me.theInk, Me)
// Create the Ink for use with the InkCollector and attach
// event handlers.
this.theInk = new Microsoft.Ink.Ink();
this.theInk.InkAdded +=
new Microsoft.Ink.StrokesEventHandler(theInk_InkAdded);
// Create the InkAnalyzer.
this.theInkAnalyzer =
new Microsoft.Ink.InkAnalyzer(this.theInk, this);
In questo esempio, il gestore eventi theInk_InkAdded utilizza i tratti che sono stati aggiunti all'oggetto theInk e li aggiunge all'oggetto theInkAnalyzer.
''' <summary>
''' The ink's InkAdded event handler.
''' </summary>
''' <param name="sender">The source of the event.</param>
''' <param name="e">The event data.</param>
Sub theInk_InkAdded( _
ByVal sender As Object, ByVal e As Microsoft.Ink.StrokesEventArgs)
' This event handler is attached to an Ink object.
Dim theInk As Microsoft.Ink.Ink = DirectCast(sender, Microsoft.Ink.Ink)
' Add the new strokes to the InkAnalyzer.
Me.theInkAnalyzer.AddStrokes(theInk.CreateStrokes(e.StrokeIds))
End Sub 'theInk_InkAdded
/// <summary>
/// The ink's InkAdded event handler.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
void theInk_InkAdded(object sender, Microsoft.Ink.StrokesEventArgs e)
{
// This event handler is attached to an Ink object.
Microsoft.Ink.Ink theInk = sender as Microsoft.Ink.Ink;
// Add the new strokes to the InkAnalyzer.
this.theInkAnalyzer.AddStrokes(theInk.CreateStrokes(e.StrokeIds));
}
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