public class OutlineOptions
Example:
Document doc = new Document(getMyDir() + "Bookmarks in headers and footers.docx");
// You can specify how bookmarks in headers/footers are exported
// There is a several options for this:
// "None" - Bookmarks in headers/footers are not exported
// "First" - Only bookmark in first header/footer of the section is exported
// "All" - Bookmarks in all headers/footers are exported
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setHeaderFooterBookmarksExportMode(headerFooterBookmarksExportMode);
saveOptions.getOutlineOptions().setDefaultBookmarksOutlineLevel(1);
saveOptions.setPageMode(PdfPageMode.USE_OUTLINES);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeaderFooterBookmarksExportMode.pdf", saveOptions);
Constructor Summary |
---|
Property Getters/Setters Summary | ||
---|---|---|
BookmarksOutlineLevelCollection | getBookmarksOutlineLevels() | |
Allows to specify individual bookmarks outline level.
|
||
boolean | getCreateMissingOutlineLevels() | |
void | setCreateMissingOutlineLevels(booleanvalue) | |
Gets or sets a value determining whether or not to create missing outline levels when the document is exported. Default value for this property is false. |
||
boolean | getCreateOutlinesForHeadingsInTables() | |
void | setCreateOutlinesForHeadingsInTables(booleanvalue) | |
Specifies whether or not to create outlines for headings (paragraphs formatted with the Heading styles) inside tables. | ||
int | getDefaultBookmarksOutlineLevel() | |
void | setDefaultBookmarksOutlineLevel(intvalue) | |
Specifies the default level in the document outline at which to display Word bookmarks. | ||
int | getExpandedOutlineLevels() | |
void | setExpandedOutlineLevels(intvalue) | |
Specifies how many levels in the document outline to show expanded when the file is viewed. | ||
int | getHeadingsOutlineLevels() | |
void | setHeadingsOutlineLevels(intvalue) | |
Specifies how many levels of headings (paragraphs formatted with the Heading styles) to include in the document outline. |
public BookmarksOutlineLevelCollection getBookmarksOutlineLevels()
If bookmark level is not specified in this collection then
Example:
Shows how to set outline levels for bookmarks.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Insert a bookmark with another bookmark nested inside it. builder.startBookmark("Bookmark 1"); builder.writeln("Text inside Bookmark 1."); builder.startBookmark("Bookmark 2"); builder.writeln("Text inside Bookmark 1 and 2."); builder.endBookmark("Bookmark 2"); builder.writeln("Text inside Bookmark 1."); builder.endBookmark("Bookmark 1"); // Insert another bookmark. builder.startBookmark("Bookmark 3"); builder.writeln("Text inside Bookmark 3."); builder.endBookmark("Bookmark 3"); // When saving to .pdf, bookmarks can be accessed via a drop-down menu and used as anchors by most readers. // Bookmarks can also have numeric values for outline levels, // enabling lower level outline entries to hide higher-level child entries when collapsed in the reader. PdfSaveOptions pdfSaveOptions = new PdfSaveOptions(); BookmarksOutlineLevelCollection outlineLevels = pdfSaveOptions.getOutlineOptions().getBookmarksOutlineLevels(); outlineLevels.add("Bookmark 1", 1); outlineLevels.add("Bookmark 2", 2); outlineLevels.add("Bookmark 3", 3); Assert.assertEquals(outlineLevels.getCount(), 3); Assert.assertTrue(outlineLevels.contains("Bookmark 1")); Assert.assertEquals(outlineLevels.get(0), 1); Assert.assertEquals(outlineLevels.get("Bookmark 2"), 2); Assert.assertEquals(outlineLevels.indexOfKey("Bookmark 3"), 2); // We can remove two elements so that only the outline level designation for "Bookmark 1" is left. outlineLevels.removeAt(2); outlineLevels.remove("Bookmark 2"); // There are nine outline levels. Their numbering will be optimized during the save operation. // In this case, levels "5" and "9" will become "2" and "3". outlineLevels.add("Bookmark 2", 5); outlineLevels.add("Bookmark 3", 9); doc.save(getArtifactsDir() + "BookmarksOutlineLevelCollection.BookmarkLevels.pdf", pdfSaveOptions); // Emptying this collection will preserve the bookmarks and put them all on the same outline level. outlineLevels.clear();
public boolean getCreateMissingOutlineLevels() / public void setCreateMissingOutlineLevels(boolean value)
Gets or sets a value determining whether or not to create missing outline levels when the document is exported.
Default value for this property is false.
Example:
Shows how to create PDF document outline entries for headings.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Creating TOC entries builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1); Assert.assertTrue(builder.getParagraphFormat().isHeading()); builder.writeln("Heading 1"); builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_4); builder.writeln("Heading 1.1.1.1"); builder.writeln("Heading 1.1.1.2"); builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_9); builder.writeln("Heading 1.1.1.1.1.1.1.1.1"); builder.writeln("Heading 1.1.1.1.1.1.1.1.2"); // Create "PdfSaveOptions" with some mandatory parameters // "HeadingsOutlineLevels" specifies how many levels of headings to include in the document outline // "CreateMissingOutlineLevels" determining whether or not to create missing heading levels PdfSaveOptions pdfSaveOptions = new PdfSaveOptions(); pdfSaveOptions.getOutlineOptions().setHeadingsOutlineLevels(9); pdfSaveOptions.getOutlineOptions().setCreateMissingOutlineLevels(true); pdfSaveOptions.setSaveFormat(SaveFormat.PDF); doc.save(getArtifactsDir() + "PdfSaveOptions.CreateMissingOutlineLevels.pdf", pdfSaveOptions);
public boolean getCreateOutlinesForHeadingsInTables() / public void setCreateOutlinesForHeadingsInTables(boolean value)
Default value is false.
Example:
Shows how to create PDF document outline entries for headings inside tables.// Create a blank document and insert a table with a heading-style text inside it Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.startTable(); builder.insertCell(); builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1); builder.write("Heading 1"); builder.endRow(); builder.insertCell(); builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.NORMAL); builder.write("Cell 1"); builder.endTable(); // Create a PdfSaveOptions object that, when saving to .pdf with it, creates entries in the document outline for all headings levels 1-9, // and make sure headings inside tables are registered by the outline also PdfSaveOptions pdfSaveOptions = new PdfSaveOptions(); pdfSaveOptions.getOutlineOptions().setHeadingsOutlineLevels(9); pdfSaveOptions.getOutlineOptions().setCreateOutlinesForHeadingsInTables(true); doc.save(getArtifactsDir() + "PdfSaveOptions.TableHeadingOutlines.pdf", pdfSaveOptions);
public int getDefaultBookmarksOutlineLevel() / public void setDefaultBookmarksOutlineLevel(int value)
Individual bookmarks level could be specified using
Specify 0 and Word bookmarks will not be displayed in the document outline. Specify 1 and Word bookmarks will be displayed in the document outline at level 1; 2 for level 2 and so on.
Default is 0. Valid range is 0 to 9.
Example:
Shows how bookmarks in headers/footers are exported to pdf.Document doc = new Document(getMyDir() + "Bookmarks in headers and footers.docx"); // You can specify how bookmarks in headers/footers are exported // There is a several options for this: // "None" - Bookmarks in headers/footers are not exported // "First" - Only bookmark in first header/footer of the section is exported // "All" - Bookmarks in all headers/footers are exported PdfSaveOptions saveOptions = new PdfSaveOptions(); saveOptions.setHeaderFooterBookmarksExportMode(headerFooterBookmarksExportMode); saveOptions.getOutlineOptions().setDefaultBookmarksOutlineLevel(1); saveOptions.setPageMode(PdfPageMode.USE_OUTLINES); doc.save(getArtifactsDir() + "PdfSaveOptions.HeaderFooterBookmarksExportMode.pdf", saveOptions);
public int getExpandedOutlineLevels() / public void setExpandedOutlineLevels(int value)
Note that this options will not work when saving to XPS.
Specify 0 and the document outline will be collapsed; specify 1 and the first level items in the outline will be expanded and so on.
Default is 0. Valid range is 0 to 9.
Example:
Converts a whole document to PDF with three levels in the document outline.Document doc = new Document(getMyDir() + "Rendering.docx"); PdfSaveOptions options = new PdfSaveOptions(); options.getOutlineOptions().setHeadingsOutlineLevels(3); options.getOutlineOptions().setExpandedOutlineLevels(1); doc.save(getArtifactsDir() + "Rendering.SaveToPdfWithOutline.pdf", options);
public int getHeadingsOutlineLevels() / public void setHeadingsOutlineLevels(int value)
Specify 0 for no headings in the outline; specify 1 for one level of headings in the outline and so on.
Default is 0. Valid range is 0 to 9.
Example:
Converts a whole document to PDF with three levels in the document outline.Document doc = new Document(getMyDir() + "Rendering.docx"); PdfSaveOptions options = new PdfSaveOptions(); options.getOutlineOptions().setHeadingsOutlineLevels(3); options.getOutlineOptions().setExpandedOutlineLevels(1); doc.save(getArtifactsDir() + "Rendering.SaveToPdfWithOutline.pdf", options);