Package com.dynamicpdf.api
Class Outline
java.lang.Object
com.dynamicpdf.api.Outline
Represents an outline.
- 
Method Summary
Modifier and TypeMethodDescriptionGets the Action of the outline.Gets a collection of child outlines.getColor()Gets the color of the outline.booleanGets a value specifying if the outline is expanded.getStyle()Gets the style of the outline.getText()Gets the text of the outline.voidSets the Action of the outline.voidsetChildren(OutlineList value)Sets a collection of child outlines.voidSets the color of the outline.voidsetExpanded(boolean value)Sets a value specifying if the outline is expanded.voidsetStyle(OutlineStyle value)Sets the style of the outline.voidSets the text of the outline. 
- 
Method Details
- 
getText
Gets the text of the outline.- Returns:
 - The text of the outline.
 
 - 
setText
Sets the text of the outline.- Parameters:
 value- The text of the outline.
 - 
getStyle
Gets the style of the outline.- Returns:
 - The style of the outline.
 
 - 
setStyle
Sets the style of the outline.- Parameters:
 value- The style of the outline.
 - 
getExpanded
public boolean getExpanded()Gets a value specifying if the outline is expanded.- Returns:
 - A value specifying if the outline is expanded.
 
 - 
setExpanded
public void setExpanded(boolean value)Sets a value specifying if the outline is expanded.- Parameters:
 value- A value specifying if the outline is expanded.
 - 
getChildren
Gets a collection of child outlines.- Returns:
 - A collection of child outlines.
 
 - 
setChildren
Sets a collection of child outlines.- Parameters:
 value- A collection of child outlines.
 - 
getAction
Gets the Action of the outline.- Returns:
 - The Action of the outline.
 
 - 
setAction
Sets the Action of the outline.- Parameters:
 value- The Action of the outline.
 - 
getColor
Gets the color of the outline.- Returns:
 - The color of the outline.
 
 - 
setColor
Sets the color of the outline.- Parameters:
 value- The color of the outline.
 
 -