TableSyntaxNode Class

TableSyntaxNode class

The TableSyntax class node.

public class TableSyntaxNode : LeafBlockSyntaxNode

Properties

NameDescription
getFirstChild Get the first child.
getLastChild Get the last child.
getNextSibling Get ghe next sibling.
getParent Get the parent node.
getPreviousSibling Get the previous sibling.

Methods

NameDescription
accept(MarkdownSyntaxVisitor)Defines the interface for accept of the visitor.
appendChild(MarkdownSyntaxNode)Append child node.
appendRow(TableRowSyntaxNode)Defines the interface for append row.
childNodes()Get the child nodes collection.
getAlignment()Defines the interface for get aligment.
getBodyRows()Defines the interface for get body rows.
getHeader()Defines the interface for get table header.
getLeadingTrivia()Get the leading trivia.
getSyntaxTree()Get the syntax tree.
getTrailingTrivia()Get the Trailing trivia.
insertBefore(MarkdownSyntaxNode, MarkdownSyntaxNode)Insert before node.
removeChild(MarkdownSyntaxNode)Remove the child.
replaceChild(MarkdownSyntaxNode, MarkdownSyntaxNode)Replace the child node.
toString()Override ToString method.
writeTo(MarkdownTextWriter)Write to MarkdownTextWriter.
writeTo(TextWriter)Write nodes to text writer.

See Also