Interface INode

Interface INode

Namespace: Aspose.Note
Assembly: Aspose.Note.dll (24.12.0)

The interface for all nodes of an Aspose.Note document.

public interface INode

Properties

NextSibling

Gets the next node at the same node tree level.

INode NextSibling { get; }

Property Value

INode

PreviousSibling

Gets the previous node at the same node tree level.

INode PreviousSibling { get; }

Property Value

INode

Methods

Accept(DocumentVisitor)

Accepts the visitor of the node.

void Accept(DocumentVisitor visitor)

Parameters

visitor DocumentVisitor

The object of a class derived from the Aspose.Note.DocumentVisitor.