StructuredDocumentTagRangeEnd

StructuredDocumentTagRangeEnd

Overview

StructuredDocumentTagRangeEnd is a class in Aspose.Words FOSS for .NET. Inherits from: Node.

Represents an end of ranged structured document tag which accepts multi-sections content.

This class provides 11 methods for working with StructuredDocumentTagRangeEnd objects in .NET programs. Available methods include: Accept, Clone, GetAncestor, GetAncestorOf, GetText, NextPreOrder, NodeTypeToString, PreviousPreOrder, Remove, StructuredDocumentTagRangeEnd, ToString. All public members are accessible to any .NET application after installing the Aspose.Words FOSS for .NET package. Properties: CustomNodeId, Document, Id, IsComposite, NextSibling, NodeType, and 3 more.

Properties

NameTypeAccessDescription
NodeTypeNodeTypeReadReturns StructuredDocumentTagRangeEnd.
IdintReadSpecifies a unique read-only persistent numerical Id for this StructuredDocumentTagRange node.
ParentNodeCompositeNodeReadGets the immediate parent of this node.
DocumentDocumentBaseReadGets the document to which this node belongs.
PreviousSiblingNodeReadGets the node immediately preceding this node.
NextSiblingNodeReadGets the node immediately following this node.
IsCompositeboolReadReturns true if this node can contain other nodes.
RangeRangeReadReturns a Range object that represents the portion of a document that is contained in this node.
CustomNodeIdintRead/WriteSpecifies custom node identifier.

Methods

SignatureDescription
StructuredDocumentTagRangeEnd(doc: DocumentBase, id: int)Initializes a new instance of the Structured document tag range end class.
Accept(visitor: DocumentVisitor)Calls Accept(visitor) on this StructuredDocumentTagRangeEnd instance.
Clone(isCloneChildren: bool)You should use the Clone(bool, INodeCloningListener) overload when the node cloning is a part of another (usually composite) node cloning process.
GetText()Gets the text of this node and of all its children.
GetAncestor(ancestorType: Type)Gets the first ancestor of the specified object type.
GetAncestorOf()Calls GetAncestorOf on this StructuredDocumentTagRangeEnd instance.
Remove()Removes itself from the parent.
NextPreOrder(rootNode: Node)Gets next node according to the pre-order tree traversal algorithm.
PreviousPreOrder(rootNode: Node)Gets the previous node according to the pre-order tree traversal algorithm.
ToString(saveFormat: SaveFormat)Exports the content of the node into a string in the specified format.
NodeTypeToString(nodeType: NodeType)A utility method that converts a node type enum value into a user friendly string.

See Also