public final class Outline extends CompositeNode<IOutlineChildNode> implements IPageChildNode
Represents a Outline.
Constructor and Description |
---|
Outline(Document document)
Initializes a new instance of the
Outline class. |
Modifier and Type | Method and Description |
---|---|
void |
accept(DocumentVisitor visitor)
Accepts the visitor of the node.
|
boolean |
getDescendantsCannotBeMoved()
Gets whether descendants of the outline can be moved.
|
float |
getHorizontalOffset()
Gets or sets the horizontal offset.
|
byte |
getIndentPosition()
Gets or sets the indent position.
|
Date |
getLastModifiedTime()
Gets or sets the last modified time.
|
float |
getMaxHeight()
Gets or sets the max height.
|
float |
getMaxWidth()
Gets or sets the max width.
|
float |
getMinWidth()
Gets or sets the min width.
|
float |
getReservedWidth()
Gets or sets the reserved width.
|
float |
getVerticalOffset()
Gets or sets the vertical offset.
|
void |
setDescendantsCannotBeMoved(boolean value)
Gets whether descendants of the outline can be moved.
|
void |
setHorizontalOffset(float value)
Gets or sets the horizontal offset.
|
void |
setIndentPosition(byte value)
Gets or sets the indent position.
|
void |
setLastModifiedTime(Date value)
Gets or sets the last modified time.
|
void |
setMaxHeight(float value)
Gets or sets the max height.
|
void |
setMaxWidth(float value)
Gets or sets the max width.
|
void |
setMinWidth(float value)
Gets or sets the min width.
|
void |
setReservedWidth(float value)
Gets or sets the reserved width.
|
void |
setVerticalOffset(float value)
Gets or sets the vertical offset.
|
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 byte getIndentPosition()
Gets or sets the indent position.
public void setIndentPosition(byte value)
Gets or sets the indent position.
public Date getLastModifiedTime()
Gets or sets the last modified time.
public void setLastModifiedTime(Date value)
Gets or sets the last modified time.
public float getMaxWidth()
Gets or sets the max width.
public void setMaxWidth(float value)
Gets or sets the max width.
public float getMinWidth()
Gets or sets the min width.
public void setMinWidth(float value)
Gets or sets the min width.
public float getMaxHeight()
Gets or sets the max height.
public void setMaxHeight(float value)
Gets or sets the max height.
public float getHorizontalOffset()
Gets or sets the horizontal offset.
getHorizontalOffset
in interface IPageChildNode
public void setHorizontalOffset(float value)
Gets or sets the horizontal offset.
setHorizontalOffset
in interface IPageChildNode
public float getVerticalOffset()
Gets or sets the vertical offset.
getVerticalOffset
in interface IPageChildNode
public void setVerticalOffset(float value)
Gets or sets the vertical offset.
setVerticalOffset
in interface IPageChildNode
public float getReservedWidth()
Gets or sets the reserved width.
public void setReservedWidth(float value)
Gets or sets the reserved width.
public boolean getDescendantsCannotBeMoved()
Gets whether descendants of the outline can be moved.
public void setDescendantsCannotBeMoved(boolean value)
Gets whether descendants of the outline can be moved.
public void accept(DocumentVisitor visitor)
Accepts the visitor of the node.
accept
in interface INode
accept
in class CompositeNode<IOutlineChildNode>
visitor
- The object of a class derived from the DocumentVisitor
.