Proprietà StrokesReparentedEventArgs.DestinationNode
Aggiornamento: novembre 2007
Ottiene il nodo di contesto in cui è stato spostato il tratto.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property DestinationNode As ContextNode
'Utilizzo
Dim instance As StrokesReparentedEventArgs
Dim value As ContextNode
value = instance.DestinationNode
public ContextNode DestinationNode { get; }
public:
property ContextNode^ DestinationNode {
ContextNode^ get ();
}
/** @property */
public ContextNode get_DestinationNode()
public function get DestinationNode () : ContextNode
Valore proprietà
Tipo: Microsoft.Ink.ContextNode
Nodo di contesto in cui è stato spostato il tratto.
Esempi
Nell'esempio seguente viene definito il metodo, ReparentStrokes, che gestisce l'evento StrokesReparented. Le informazioni relative all'evento vengono passate all'oggetto modello di documento, theDocumentModel.
In questo esempio non viene fornita la definizione del modello di documento né viene illustrato come vengono elaborate le informazioni passate a tale modello.
'/ <summary>
'/ Handles the InkAnalyzer.StrokeReparented event.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
Private Sub ReparentStroke( _
ByVal sender As Object, _
ByVal e As Microsoft.Ink.StrokesReparentedEventArgs)
Me.theDocumentModel.ReparentStrokes(e.ReparentedStrokes, e.SourceNode, _
e.DestinationNode, CType(sender, Microsoft.Ink.InkAnalyzer))
End Sub 'ReparentStroke
/// <summary>
/// Handles the InkAnalyzer.StrokeReparented event.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
private void ReparentStrokes(
object sender, Microsoft.Ink.StrokesReparentedEventArgs e)
{
this.theDocumentModel.ReparentStroke(
e.ReparentedStrokes, e.SourceNode, e.DestinationNode,
(Microsoft.Ink.InkAnalyzer)sender);
}
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
StrokesReparentedEventArgs Classe