Class IndentatedNodeT

IndentatedNode<T> class

La clase base para nodos con sangría relativa para nodos secundarios.

public class IndentatedNode<T> : CompositeNode<T>, IIndentatedNode
    where T : INode
ParámetroDescripción
TEl tipo de elementos en el nodo compuesto.

Propiedades

NombreDescripción
Document { get; }Obtiene el documento del nodo.
FirstChild { get; }
IndentPosition { get; set; }Obtiene o establece la posición de la sangría.
IsComposite { get; }
LastChild { get; }
NextSibling { get; }Obtiene el siguiente nodo en el mismo nivel de árbol de nodos.
NodeType { get; }Obtiene el tipo de nodo.
ParentNode { get; }Obtiene el nodo padre.
PreviousSibling { get; }Obtiene el nodo anterior en el mismo nivel de árbol de nodos.

Métodos

NombreDescripción
override Accept(DocumentVisitor)
virtual AppendChildFirst<T1>(T1)
virtual AppendChildLast<T1>(T1)
override GetChildNodes<T1>()
GetEnumerator()
virtual InsertChild<T1>(int, T1)
InsertChildrenRange(int, IEnumerable<T>)
InsertChildrenRange(int, params T[])
RemoveChild<T1>(T1)

Ver también