public final class Table extends CompositeNode<TableRow> implements IOutlineElementChildNode, ITaggable
Represents a table.
Constructor and Description |
---|
Table()
Initializes a new instance of the
Table class. |
Table(Document document)
Deprecated.
Obsolete since 22.1 release. Use other constructors instead.
|
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.
|
com.aspose.ms.System.Collections.Generic.List<ITag> |
getTags()
Gets the list of all tags of a table.
|
boolean |
isBordersVisible()
Gets a value indicating whether the table border is visible.
|
void |
setBordersVisible(boolean value)
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, insertChild, insertChildrenRange, insertChildrenRange, isComposite, iterator, removeChild
getDocument, getNextSibling, getNodeType, getParentNode, getPreviousSibling
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getNextSibling, getPreviousSibling
forEach, spliterator
@Deprecated public Table(Document document)
Initializes a new instance of the Table
class.
document
- The parent document of the table.public Table()
Initializes a new instance of the Table
class.
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 a value indicating whether the table border is visible.
public void setBordersVisible(boolean value)
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 final com.aspose.ms.System.Collections.Generic.List<ITag> getTags()
Gets the list of all 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
.