public final class TableCell extends CompositeNode<OutlineElement>
Represents a table cell.
Constructor and Description |
---|
TableCell(Document document)
Initializes a new instance of the
TableCell class. |
Modifier and Type | Method and Description |
---|---|
void |
accept(DocumentVisitor visitor)
Accepts the visitor of the node.
|
Color |
getBackgroundColor()
Gets or sets the background color.
|
byte |
getIndentPosition()
Gets or sets the indent position.
|
Date |
getLastModifiedTime()
Gets or sets the last modified time.
|
float |
getMaxWidth()
Gets the max width.
|
void |
setBackgroundColor(Color value)
Gets or sets the background color.
|
void |
setIndentPosition(byte value)
Gets or sets the indent position.
|
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
forEach, spliterator
public TableCell(Document document)
Initializes a new instance of the TableCell
class.
document
- The parent document of the table cell.public Date getLastModifiedTime()
Gets or sets the last modified time.
public void setLastModifiedTime(Date value)
Gets or sets the last modified time.
public byte getIndentPosition()
Gets or sets the indent position.
public void setIndentPosition(byte value)
Gets or sets the indent position.
public float getMaxWidth()
Gets the max width.
public Color getBackgroundColor()
Gets or sets the background color.
public void setBackgroundColor(Color value)
Gets or sets the background color.
public void accept(DocumentVisitor visitor)
Accepts the visitor of the node.
accept
in interface INode
accept
in class CompositeNode<OutlineElement>
visitor
- The object of a class derived from the DocumentVisitor
.