public final class Table extends CompositeNode<TableRow> implements IOutlineElementChildNode
Represents a table.
Constructor and Description |
---|
Table(Document document)
Initializes a new instance of the
Table class. |
Modifier and Type | Method and Description |
---|---|
void |
accept(DocumentVisitor visitor)
Accepts the visitor of the node.
|
com.aspose.ms.System.Collections.Generic.IGenericList<TableColumn> |
getColumns()
Gets the columns of the table.
|
Date |
getLastModifiedTime()
Gets or sets the last modified time.
|
List<NoteTagCore> |
getTags()
Gets the tags of a table.
|
boolean |
isBordersVisible()
Gets or sets a value indicating whether the table border is visible.
|
void |
setBordersVisible(boolean value)
Gets or sets a value indicating whether the table border is visible.
|
void |
setLastModifiedTime(Date value)
Gets or sets the last modified time.
|
appendChildFirst, appendChildLast, getChildNodes, getChildren, getFirstChild, getLastChild, getText, insertChild, insertChildrenRange, insertChildrenRange, isComposite, iterator, removeChild
getDocument, getNextSibling, getNodeType, getParentNode, getPreviousSibling
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getNextSibling, getPreviousSibling
forEach, spliterator
public Table(Document document)
Initializes a new instance of the Table
class.
document
- The parent document of the table.public Date getLastModifiedTime()
Gets or sets the last modified time.
public void setLastModifiedTime(Date value)
Gets or sets the last modified time.
public boolean isBordersVisible()
Gets or sets a value indicating whether the table border is visible.
public void setBordersVisible(boolean value)
Gets or sets a value indicating whether the table border is visible.
public com.aspose.ms.System.Collections.Generic.IGenericList<TableColumn> getColumns()
Gets the columns of the table.
public List<NoteTagCore> getTags()
Gets the tags of a table.
public void accept(DocumentVisitor visitor)
Accepts the visitor of the node.
accept
in interface INode
accept
in class CompositeNode<TableRow>
visitor
- The object of a class derived from the DocumentVisitor
.