Uses of Class
com.itextpdf.text.pdf.PdfOutline
-
Packages that use PdfOutline Package Description com.itextpdf.text.pdf com.itextpdf.tool.xml.html Everything to parse HTML tags to pdf used by theHtmlPipeline
is in here. -
-
Uses of PdfOutline in com.itextpdf.text.pdf
Fields in com.itextpdf.text.pdf declared as PdfOutline Modifier and Type Field Description protected PdfOutline
PdfDocument. currentOutline
This is the currentPdfOutline
in the hierarchy of outlines.private PdfOutline
PdfOutline. parent
value of the Parent-keyprotected PdfOutline
PdfDocument. rootOutline
This is the root outline of the document.Fields in com.itextpdf.text.pdf with type parameters of type PdfOutline Modifier and Type Field Description protected java.util.ArrayList<PdfOutline>
PdfOutline. kids
Methods in com.itextpdf.text.pdf that return PdfOutline Modifier and Type Method Description PdfOutline
PdfContentByte. getRootOutline()
Gets the root outline.PdfOutline
PdfDocument. getRootOutline()
Gets the root outline.PdfOutline
PdfWriter. getRootOutline()
Use this method to get the root outline and construct bookmarks.PdfOutline
PdfOutline. parent()
Gets the parent of thisPdfOutline
.Methods in com.itextpdf.text.pdf that return types with arguments of type PdfOutline Modifier and Type Method Description java.util.ArrayList<PdfOutline>
PdfOutline. getKids()
Returns the kids of this outlineMethods in com.itextpdf.text.pdf with parameters of type PdfOutline Modifier and Type Method Description PdfIndirectReference
PdfCopy. add(PdfOutline outline)
void
PdfOutline. addKid(PdfOutline outline)
Adds a kid to the outlinevoid
PdfContentByte. addOutline(PdfOutline outline, java.lang.String name)
Adds a named outline to the document.(package private) void
PdfDocument. addOutline(PdfOutline outline, java.lang.String name)
Adds a named outline to the document .(package private) void
PdfOutline. initOutline(PdfOutline parent, java.lang.String title, boolean open)
Helper for the constructors.(package private) void
PdfDocument. outlineTree(PdfOutline outline)
Recursive method used to write outlines.(package private) void
PdfDocument. traverseOutlineCount(PdfOutline outline)
Recursive method to update the count in the outlines.Method parameters in com.itextpdf.text.pdf with type arguments of type PdfOutline Modifier and Type Method Description void
PdfOutline. setKids(java.util.ArrayList<PdfOutline> kids)
Sets the kids of this outlineConstructors in com.itextpdf.text.pdf with parameters of type PdfOutline Constructor Description PdfOutline(PdfOutline parent, PdfAction action, Paragraph title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfAction action, Paragraph title, boolean open)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfAction action, PdfString title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfAction action, PdfString title, boolean open)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfAction action, java.lang.String title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfAction action, java.lang.String title, boolean open)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, Paragraph title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, Paragraph title, boolean open)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, PdfString title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, PdfString title, boolean open)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, java.lang.String title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, java.lang.String title, boolean open)
Constructs aPdfOutline
. -
Uses of PdfOutline in com.itextpdf.tool.xml.html
Fields in com.itextpdf.tool.xml.html declared as PdfOutline Modifier and Type Field Description private PdfOutline
HeaderNode. outline
Methods in com.itextpdf.tool.xml.html that return PdfOutline Modifier and Type Method Description PdfOutline
HeaderNode. outline()
Returns the PdfOutline attached to this HeaderNode.Constructors in com.itextpdf.tool.xml.html with parameters of type PdfOutline Constructor Description HeaderNode(int level, PdfOutline outline, HeaderNode parent)
Constructor.
-