NodeChangingAction
Contenuti
[
Nascondere
]NodeChangingAction enumeration
Specifica il tipo di modifica del nodo.
public enum NodeChangingAction
I valori
Nome | Valore | Descrizione |
---|---|---|
Insert | 0 | Un nodo viene inserito nell’albero. |
Remove | 1 | Un nodo viene rimosso dall’albero. |
Esempi
Mostra come utilizzare un NodeChangingCallback per monitorare in tempo reale le modifiche apportate all’albero del documento durante la modifica.
public void NodeChangingCallback()
{
Document doc = new Document();
doc.NodeChangingCallback = new NodeChangingPrinter();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Hello world!");
builder.StartTable();
builder.InsertCell();
builder.Write("Cell 1");
builder.InsertCell();
builder.Write("Cell 2");
builder.EndTable();
builder.InsertImage(ImageDir + "Logo.jpg");
builder.CurrentParagraph.ParentNode.RemoveAllChildren();
}
/// <summary>
/// Stampa ogni inserimento/rimozione di nodo non appena avviene nel documento.
/// </summary>
private class NodeChangingPrinter : INodeChangingCallback
{
void INodeChangingCallback.NodeInserting(NodeChangingArgs args)
{
Assert.AreEqual(NodeChangingAction.Insert, args.Action);
Assert.AreEqual(null, args.OldParent);
}
void INodeChangingCallback.NodeInserted(NodeChangingArgs args)
{
Assert.AreEqual(NodeChangingAction.Insert, args.Action);
Assert.NotNull(args.NewParent);
Console.WriteLine("Inserted node:");
Console.WriteLine($"\tType:\t{args.Node.NodeType}");
if (args.Node.GetText().Trim() != "")
{
Console.WriteLine($"\tText:\t\"{args.Node.GetText().Trim()}\"");
}
Console.WriteLine($"\tHash:\t{args.Node.GetHashCode()}");
Console.WriteLine($"\tParent:\t{args.NewParent.NodeType} ({args.NewParent.GetHashCode()})");
}
void INodeChangingCallback.NodeRemoving(NodeChangingArgs args)
{
Assert.AreEqual(NodeChangingAction.Remove, args.Action);
}
void INodeChangingCallback.NodeRemoved(NodeChangingArgs args)
{
Assert.AreEqual(NodeChangingAction.Remove, args.Action);
Assert.Null(args.NewParent);
Console.WriteLine($"Removed node: {args.Node.NodeType} ({args.Node.GetHashCode()})");
}
}
Guarda anche
- class NodeChangingArgs
- property Action
- spazio dei nomi Aspose.Words
- assemblea Aspose.Words