com.aspose.words

Class PdfPageMode

  • java.lang.Object
    • com.aspose.words.PdfPageMode
public class PdfPageMode 
extends java.lang.Object

Utility class containing constants. Specifies how the PDF document should be displayed when opened in the PDF reader.

Example:

Shows how to set instructions for some PDF readers to follow when opening an output document.
Document doc = new Document(getMyDir() + "Document.docx");

PdfSaveOptions options = new PdfSaveOptions();
options.setPageMode(pageMode);

doc.save(getArtifactsDir() + "PdfSaveOptions.PageMode.pdf", options);

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);

Field Summary
static final intUSE_NONE = 0
Neither document outline nor thumbnail images are visible.
static final intUSE_OUTLINES = 1
Document outline is visible. Note that if there're no outlines in the PDF document then outline navigation pane will not be visible anyway.
static final intUSE_THUMBS = 2
Thumbnail images are visible.
static final intFULL_SCREEN = 3
Full-screen mode, with no menu bar, window controls, or any other window visible.
static final intUSE_OC = 4
Optional content group panel is visible.
 

    • Field Detail

      • USE_NONE = 0

        public static final int USE_NONE
        Neither document outline nor thumbnail images are visible.
      • USE_OUTLINES = 1

        public static final int USE_OUTLINES
        Document outline is visible. Note that if there're no outlines in the PDF document then outline navigation pane will not be visible anyway.
      • USE_THUMBS = 2

        public static final int USE_THUMBS
        Thumbnail images are visible.
      • FULL_SCREEN = 3

        public static final int FULL_SCREEN
        Full-screen mode, with no menu bar, window controls, or any other window visible.
      • USE_OC = 4

        public static final int USE_OC
        Optional content group panel is visible.