PDFreactor-PHP
[ class tree: PDFreactor-PHP ] [ index: PDFreactor-PHP ] [ all elements ]

Procedural File: PDFreactor.class.php

Source Location: /PDFreactor.class.php





Page Details:

This is the PDFreactor 7.0 PHP API

RealObjects(R) PDFreactor(R) is a powerful formatting processor for converting HTML and XML documents into PDF.

The simplest sample for the PDFreactor PHP API:

  1.  require_once('PDFreactor.class.php');
  2.  $pdfReactor new PDFreactor();
  3.  $result $pdfReactor->renderDocumentFromURL("http://www.pdfreactor.com");
  4.  header("Content-Type: application/pdf");
  5.  echo $result;









CLEANUP_CYBERNEKO [line 48]

CLEANUP_CYBERNEKO = 2
Indicates that the CyberNeko HTML parser will be used to perform a cleanup when loading a non-well-formed document.



Tags:

see:  setCleanupTool()

[ Top ]



CLEANUP_JTIDY [line 40]

CLEANUP_JTIDY = 1
Indicates that JTidy will be used to perform a cleanup when loading a non-well-formed document.



Tags:

see:  setCleanupTool()

[ Top ]



CLEANUP_NONE [line 32]

CLEANUP_NONE = 0
Indicates that no cleanup will be performed when loading a document. If the loaded document is not well-formed, an exception will be thrown.



Tags:

see:  setCleanupTool()

[ Top ]



CLEANUP_TAGSOUP [line 56]

CLEANUP_TAGSOUP = 3
Indicates that the TagSoup HTML parser will be used to perform a cleanup when loading a non-well-formed document.



Tags:

see:  setCleanupTool().

[ Top ]



COLOR_SPACE_CMYK [line 493]

COLOR_SPACE_CMYK = 1
The color space CMYK


[ Top ]



COLOR_SPACE_RGB [line 488]

COLOR_SPACE_RGB = 0
The color space RGB


[ Top ]



CONFORMANCE_PDF [line 505]

CONFORMANCE_PDF = 0
PDF with no additional restrictions (default)



Tags:

see:  setConformance()

[ Top ]



CONFORMANCE_PDFA [line 524]

CONFORMANCE_PDFA = CONFORMANCE_PDFA1A


Tags:

deprecated:  As of PDFreactor 7.0, replaced by CONFORMANCE_PDFA1A

[ Top ]



CONFORMANCE_PDFA1A [line 512]

CONFORMANCE_PDFA1A = 1
PDF/A-1a (ISO 19005-1 Level A)



Tags:

see:  setConformance()

[ Top ]



CONFORMANCE_PDFA3A [line 519]

CONFORMANCE_PDFA3A = 2
PDF/A-3a (ISO 19005-3 Level A)



Tags:

see:  setConformance()

[ Top ]



DOCTYPE_AUTODETECT [line 80]

DOCTYPE_AUTODETECT = 0
Indicates that the document type will be detected automatically.

A document has the type DOCTYPE_HTML5 if the name of the root element is "html" (ignoring case considerations). In all other cases the document type is DOCTYPE_XML.




Tags:

see:  setDocumentType()

[ Top ]



DOCTYPE_HTML5 [line 107]

DOCTYPE_HTML5 = 3
Indicates that the document type will be set to HTML5. The HTML default style sheet is used and the document is loaded regarding style elements, style attributes and link style sheets.



Tags:

see:  setDocumentType()

[ Top ]



DOCTYPE_XHTML [line 98]

DOCTYPE_XHTML = 2
Indicates that the document type will be set to XHTML. The HTML default style sheet is used and the document is loaded regarding style elements, style attributes and link style sheets.



Tags:

see:  setDocumentType()

[ Top ]



DOCTYPE_XML [line 89]

DOCTYPE_XML = 1
Indicates that the document type will be set to generic XML. No default style sheet is used and the document is loaded as is without regards to style elements or attributes.



Tags:

see:  setDocumentType()

[ Top ]



DOCUMENT_DEFAULT_LANGUAGE_DEFAULT [line 127]

DOCUMENT_DEFAULT_LANGUAGE_DEFAULT = NULL
Indicates the Default language used for a document if no other language is set in the document itself.


[ Top ]



ENCRYPTION_40 [line 146]

ENCRYPTION_40 = 1
Indicates that the document will be encrypted using RC4 40 bit encryption.



Tags:

see:  setEncryption()

[ Top ]



ENCRYPTION_128 [line 154]

ENCRYPTION_128 = 2
Indicates that the document will be encrypted using RC4 128 bit encryption.

For normal purposes this value should be used.




Tags:

see:  setEncryption()

[ Top ]



ENCRYPTION_NONE [line 139]

ENCRYPTION_NONE = 0
Indicates that the document will not be encrypted. If encryption is disabled then no user password and no owner password can be used.



Tags:

see:  setEncryption()

[ Top ]



EXCEEDING_CONTENT_AGAINST_NONE [line 744]

EXCEEDING_CONTENT_AGAINST_NONE = 0
Do not log exceeding content.



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_AGAINST_PAGE_BORDERS [line 751]

EXCEEDING_CONTENT_AGAINST_PAGE_BORDERS = 1
Log content exceeding the edges of its page.



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_AGAINST_PAGE_CONTENT [line 758]

EXCEEDING_CONTENT_AGAINST_PAGE_CONTENT = 2
Log content exceeding its page content area (overlaps the page margin).



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_AGAINST_PARENT [line 765]

EXCEEDING_CONTENT_AGAINST_PARENT = 3
Log content exceeding its container.



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_ANALYZE_CONTENT [line 723]

EXCEEDING_CONTENT_ANALYZE_CONTENT = 1
Log exceeding content.



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_ANALYZE_CONTENT_AND_BOXES [line 737]

EXCEEDING_CONTENT_ANALYZE_CONTENT_AND_BOXES = 3
Log exceeding content and all boxes.



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_ANALYZE_CONTENT_AND_STATIC_BOXES [line 730]

EXCEEDING_CONTENT_ANALYZE_CONTENT_AND_STATIC_BOXES = 2
Log exceeding content and boxes without absolute positioning.



Tags:

see:  setLogExceedingContent()

[ Top ]



EXCEEDING_CONTENT_ANALYZE_NONE [line 716]

EXCEEDING_CONTENT_ANALYZE_NONE = 0
Do not log exceeding content.



Tags:

see:  setLogExceedingContent()

[ Top ]



HTTPS_MODE_LENIENT [line 834]

HTTPS_MODE_LENIENT = 1
Indicates lenient HTTPS behavior. This means that many certificate issues are ignored.



Tags:

see:  setHTTPSMode()

[ Top ]



HTTPS_MODE_STRICT [line 826]

HTTPS_MODE_STRICT = 0
Indicates strict HTTPS behavior. This matches the default behavior of Java.



Tags:

see:  setHTTPSMode()

[ Top ]



JAVASCRIPT_MODE_DISABLED [line 776]

JAVASCRIPT_MODE_DISABLED = 0
Indicates that JavaScript is disabled.



Tags:

see:  setJavaScriptMode()

[ Top ]



JAVASCRIPT_MODE_ENABLED [line 783]

JAVASCRIPT_MODE_ENABLED = 1
Indicates that JavaScript is enabled.



Tags:

see:  setJavaScriptMode()

[ Top ]



JAVASCRIPT_MODE_ENABLED_NO_LAYOUT [line 790]

JAVASCRIPT_MODE_ENABLED_NO_LAYOUT = 2
Indicates that JavaScript is enabled, without access to layout data.



Tags:

see:  setJavaScriptMode()

[ Top ]



JAVASCRIPT_MODE_ENABLED_REAL_TIME [line 800]

JAVASCRIPT_MODE_ENABLED_REAL_TIME = 3
Indicates that JavaScript is enabled, without converter-specific optimizations to timeouts and intervals. This mode is significantly more time consuming and should only be used when no other mode provides the expected results.



Tags:

see:  setJavaScriptMode()

[ Top ]



JAVASCRIPT_MODE_ENABLED_TIME_LAPSE [line 810]

JAVASCRIPT_MODE_ENABLED_TIME_LAPSE = 4
Indicates that JavaScript is enabled, with time stamps increasing more quickly.

This makes some kinds of JS based animations (e.g. when using jQuery) finish immediately, which has the same effect as JAVASCRIPT_MODE_ENABLED_REAL_TIME, but is significantly faster. Only Date.getTime() is affected by this.




Tags:

see:  setJavaScriptMode()

[ Top ]



KEYSTORE_TYPE_JKS [line 181]

KEYSTORE_TYPE_JKS = "jks"
Keystore type "jks"



Tags:

see:  setSignPDF()

[ Top ]



KEYSTORE_TYPE_PKCS12 [line 174]

KEYSTORE_TYPE_PKCS12 = "pkcs12"
Keystore type "pkcs12"



Tags:

see:  setSignPDF()

[ Top ]



LOG_LEVEL_DEBUG [line 241]

LOG_LEVEL_DEBUG = 0
Indicates that debug, info, warn and fatal log events will be logged.



Tags:

see:  setLogLevel()

[ Top ]



LOG_LEVEL_FATAL [line 220]

LOG_LEVEL_FATAL = 3
Indicates that only fatal log events will be logged.



Tags:

see:  setLogLevel()

[ Top ]



LOG_LEVEL_INFO [line 234]

LOG_LEVEL_INFO = 1
Indicates that info, warn and fatal log events will be logged.



Tags:

see:  setLogLevel()

[ Top ]



LOG_LEVEL_NONE [line 213]

LOG_LEVEL_NONE = 4
Indicates that no log events will be logged.



Tags:

see:  setLogLevel()

[ Top ]



LOG_LEVEL_PERFORMANCE [line 248]

LOG_LEVEL_PERFORMANCE = -1
Indicates that all log events will be logged.



Tags:

see:  setLogLevel()

[ Top ]



LOG_LEVEL_WARN [line 227]

LOG_LEVEL_WARN = 2
Indicates that warn and fatal log events will be logged.



Tags:

see:  setLogLevel()

[ Top ]



MERGE_MODE_APPEND [line 557]

MERGE_MODE_APPEND = 1
Default merge mode: Append converted document to existing PDF.



Tags:

see:  setMergeMode()

[ Top ]



MERGE_MODE_OVERLAY [line 571]

MERGE_MODE_OVERLAY = 3
Alternate merge mode (overlay): Adding converted document above the existing PDF.



Tags:

see:  setMergeMode()

[ Top ]



MERGE_MODE_OVERLAY_BELOW [line 578]

MERGE_MODE_OVERLAY_BELOW = 4
Alternate merge mode (overlay): Adding converted document below the existing PDF.



Tags:

see:  setMergeMode()

[ Top ]



MERGE_MODE_PREPEND [line 564]

MERGE_MODE_PREPEND = 2
Alternate merge mode: Prepend converted document to existing PDF.



Tags:

see:  setMergeMode()

[ Top ]



OUTPUT_FORMAT_BMP [line 873]

OUTPUT_FORMAT_BMP = 4
BMP output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_GIF [line 879]

OUTPUT_FORMAT_GIF = 5
GIF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_JPEG [line 855]

OUTPUT_FORMAT_JPEG = 1
JPEG output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_PDF [line 849]

OUTPUT_FORMAT_PDF = 0
PDF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_PNG [line 861]

OUTPUT_FORMAT_PNG = 2
PNG output format (using Java Image I/O)



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_PNG_AI [line 885]

OUTPUT_FORMAT_PNG_AI = 6
PNG output format (using Apache Imaging)



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_PNG_TRANSPARENT [line 867]

OUTPUT_FORMAT_PNG_TRANSPARENT = 3
Transparent PNG output format (using Java Image I/O)



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_PNG_TRANSPARENT_AI [line 891]

OUTPUT_FORMAT_PNG_TRANSPARENT_AI = 7
Transparent PNG output format (using Apache Imaging)



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_TIFF_CCITT_1D [line 915]

OUTPUT_FORMAT_TIFF_CCITT_1D = 11
Monochrome CCITT 1D compressed TIFF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_TIFF_CCITT_GROUP_3 [line 921]

OUTPUT_FORMAT_TIFF_CCITT_GROUP_3 = 12
Monochrome CCITT Group 3 compressed TIFF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_TIFF_CCITT_GROUP_4 [line 927]

OUTPUT_FORMAT_TIFF_CCITT_GROUP_4 = 13
Monochrome CCITT Group 4 compressed TIFF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_TIFF_LZW [line 897]

OUTPUT_FORMAT_TIFF_LZW = 8
LZW compressed TIFF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_TIFF_PACKBITS [line 903]

OUTPUT_FORMAT_TIFF_PACKBITS = 9
PackBits compressed TIFF output format



Tags:

see:  setOutputFormat()

[ Top ]



OUTPUT_FORMAT_TIFF_UNCOMPRESSED [line 909]

OUTPUT_FORMAT_TIFF_UNCOMPRESSED = 10
Uncompressed TIFF output format



Tags:

see:  setOutputFormat()

[ Top ]



OVERLAY_REPEAT_ALL_PAGES [line 604]

OVERLAY_REPEAT_ALL_PAGES = 2
All pages of the shorter document are repeated, to overlay all pages of the longer document.



Tags:

see:  setMergeMode()

[ Top ]



OVERLAY_REPEAT_LAST_PAGE [line 597]

OVERLAY_REPEAT_LAST_PAGE = 1
Last page of the shorter document is repeated, to overlay all pages of the longer document.



Tags:

see:  setMergeMode()

[ Top ]



OVERLAY_REPEAT_NONE [line 590]

OVERLAY_REPEAT_NONE = 0
No pages of the shorter document are repeated, leaving some pages of the longer document without overlay.



Tags:

see:  setMergeMode()

[ Top ]



PAGES_PER_SHEET_DIRECTION_DOWN_LEFT [line 690]

PAGES_PER_SHEET_DIRECTION_DOWN_LEFT = 5
Arranges the pages on a sheet from top to bottom and right to left.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_DOWN_RIGHT [line 683]

PAGES_PER_SHEET_DIRECTION_DOWN_RIGHT = 4
Arranges the pages on a sheet from top to bottom and left to right.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_LEFT_DOWN [line 662]

PAGES_PER_SHEET_DIRECTION_LEFT_DOWN = 1
Arranges the pages on a sheet from right to left and top to bottom.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_LEFT_UP [line 676]

PAGES_PER_SHEET_DIRECTION_LEFT_UP = 3
Arranges the pages on a sheet from right to left and bottom to top.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_RIGHT_DOWN [line 655]

PAGES_PER_SHEET_DIRECTION_RIGHT_DOWN = 0
Arranges the pages on a sheet from left to right and top to bottom.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_RIGHT_UP [line 669]

PAGES_PER_SHEET_DIRECTION_RIGHT_UP = 2
Arranges the pages on a sheet from left to right and bottom to top.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_UP_LEFT [line 704]

PAGES_PER_SHEET_DIRECTION_UP_LEFT = 7
Arranges the pages on a sheet from bottom to top and right to left.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGES_PER_SHEET_DIRECTION_UP_RIGHT [line 697]

PAGES_PER_SHEET_DIRECTION_UP_RIGHT = 6
Arranges the pages on a sheet from bottom to top and left to right.



Tags:

see:  setPagesPerSheetProperties()

[ Top ]



PAGE_ORDER_BOOKLET [line 636]

PAGE_ORDER_BOOKLET = "BOOKLET"
Page order mode to arrange all pages in booklet order.



Tags:

see:  setPageOrder()

[ Top ]



PAGE_ORDER_BOOKLET_RTL [line 643]

PAGE_ORDER_BOOKLET_RTL = "BOOKLET_RTL"
Page order mode to arrange all pages in right-to-left booklet order.



Tags:

see:  setPageOrder()

[ Top ]



PAGE_ORDER_EVEN [line 629]

PAGE_ORDER_EVEN = "EVEN"
Page order mode to keep even pages only.



Tags:

see:  setPageOrder()

[ Top ]



PAGE_ORDER_ODD [line 622]

PAGE_ORDER_ODD = "ODD"
Page order mode to keep odd pages only.



Tags:

see:  setPageOrder()

[ Top ]



PAGE_ORDER_REVERSE [line 615]

PAGE_ORDER_REVERSE = "REVERSE"
Page order mode to reverse the page order.



Tags:

see:  setPageOrder()

[ Top ]



PROCESSING_PREFERENCES_SAVE_MEMORY_IMAGES [line 545]

PROCESSING_PREFERENCES_SAVE_MEMORY_IMAGES = 1
Processing preferences flag for the memory saving mode for images.



Tags:

see:  setProcessingPreferences()

[ Top ]



SIGNING_MODE_SELF_SIGNED [line 188]

SIGNING_MODE_SELF_SIGNED = 1
Signing mode for self-signed certificates



Tags:

see:  setSignPDF()

[ Top ]



SIGNING_MODE_VERISIGN_SIGNED [line 195]

SIGNING_MODE_VERISIGN_SIGNED = 2
Signing mode for VeriSign certificates



Tags:

see:  setSignPDF()

[ Top ]



SIGNING_MODE_WINCER_SIGNED [line 202]

SIGNING_MODE_WINCER_SIGNED = 3
Signing mode for Windows certificates



Tags:

see:  setSignPDF()

[ Top ]



VIEWER_PREFERENCES_CENTER_WINDOW [line 380]

VIEWER_PREFERENCES_CENTER_WINDOW = 1<<16
Position the document's window in the center of the screen.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_DIRECTION_L2R [line 422]

VIEWER_PREFERENCES_DIRECTION_L2R = 1<<22
Position pages in ascending order from left to right.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_DIRECTION_R2L [line 429]

VIEWER_PREFERENCES_DIRECTION_R2L = 1<<23
Position pages in ascending order from right to left.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_DISPLAY_DOC_TITLE [line 387]

VIEWER_PREFERENCES_DISPLAY_DOC_TITLE = 1<<17
Display the document's title in the top bar.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_DUPLEX_FLIP_LONG_EDGE [line 464]

VIEWER_PREFERENCES_DUPLEX_FLIP_LONG_EDGE = 1<<28
Print dialog default setting: duplex (long edge)



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_DUPLEX_FLIP_SHORT_EDGE [line 457]

VIEWER_PREFERENCES_DUPLEX_FLIP_SHORT_EDGE = 1<<27
Print dialog default setting: duplex (short edge)



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_DUPLEX_SIMPLEX [line 450]

VIEWER_PREFERENCES_DUPLEX_SIMPLEX = 1<<26
Print dialog default setting: simplex



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_FIT_WINDOW [line 373]

VIEWER_PREFERENCES_FIT_WINDOW = 1<<15
Resize the document's window to fit the size of the first displayed page



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_HIDE_MENUBAR [line 359]

VIEWER_PREFERENCES_HIDE_MENUBAR = 1<<13
Hide the viewer application's menu bar when the document is active.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_HIDE_TOOLBAR [line 352]

VIEWER_PREFERENCES_HIDE_TOOLBAR = 1<<12
Hide the viewer application's tool bars when the document is active.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_HIDE_WINDOW_UI [line 366]

VIEWER_PREFERENCES_HIDE_WINDOW_UI = 1<<14
Hide user interface elements in the document's window.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_NONE [line 394]

VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_NONE = 1<<18
Show document outline panel on exiting full-screen mode. Has to be combined with VIEWER_PREFERENCES_PAGE_MODE_FULLSCREEN.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_OC [line 415]

VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_OC = 1<<21
Show attachments panel on exiting full-screen mode. Has to be combined with VIEWER_PREFERENCES_PAGE_MODE_FULLSCREEN.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_OUTLINES [line 401]

VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_OUTLINES = 1<<19
Show thumbnail images panel on exiting full-screen mode. Has to be combined with VIEWER_PREFERENCES_PAGE_MODE_FULLSCREEN.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_THUMBS [line 408]

VIEWER_PREFERENCES_NON_FULLSCREEN_PAGE_MODE_USE_THUMBS = 1<<20
Show optional content group panel on exiting full-screen mode. Has to be combined with VIEWER_PREFERENCES_PAGE_MODE_FULLSCREEN.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_LAYOUT_ONE_COLUMN [line 275]

VIEWER_PREFERENCES_PAGE_LAYOUT_ONE_COLUMN = 2
Display the pages in one column.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_LAYOUT_SINGLE_PAGE [line 268]

VIEWER_PREFERENCES_PAGE_LAYOUT_SINGLE_PAGE = 1
Display one page at a time. (default)



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_COLUMN_LEFT [line 282]

VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_COLUMN_LEFT = 4
Display the pages in two columns, with odd numbered pages on the left.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_COLUMN_RIGHT [line 289]

VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_COLUMN_RIGHT = 8
Display the pages in two columns, with odd numbered pages on the right.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_PAGE_LEFT [line 296]

VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_PAGE_LEFT = 16
Display two pages at a time, with odd numbered pages on the left.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_PAGE_RIGHT [line 303]

VIEWER_PREFERENCES_PAGE_LAYOUT_TWO_PAGE_RIGHT = 32
Display two pages at a time, with odd numbered pages on the right.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_MODE_FULLSCREEN [line 331]

VIEWER_PREFERENCES_PAGE_MODE_FULLSCREEN = 512
Switch to fullscreen mode on startup.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_MODE_USE_ATTACHMENTS [line 345]

VIEWER_PREFERENCES_PAGE_MODE_USE_ATTACHMENTS = 2048
Show attachments panel on startup.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_MODE_USE_NONE [line 310]

VIEWER_PREFERENCES_PAGE_MODE_USE_NONE = 64
Show no panel on startup.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_MODE_USE_OC [line 338]

VIEWER_PREFERENCES_PAGE_MODE_USE_OC = 1024
Show optional content group panel on startup.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_MODE_USE_OUTLINES [line 317]

VIEWER_PREFERENCES_PAGE_MODE_USE_OUTLINES = 128
Show document outline panel on startup.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PAGE_MODE_USE_THUMBS [line 324]

VIEWER_PREFERENCES_PAGE_MODE_USE_THUMBS = 256
Show thumbnail images panel on startup.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PICKTRAYBYPDFSIZE_FALSE [line 471]

VIEWER_PREFERENCES_PICKTRAYBYPDFSIZE_FALSE = 1<<29
Print dialog default setting: do not pick tray by PDF size



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PICKTRAYBYPDFSIZE_TRUE [line 478]

VIEWER_PREFERENCES_PICKTRAYBYPDFSIZE_TRUE = 1<<30
Print dialog default setting: pick tray by PDF size



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PRINTSCALING_APPDEFAULT [line 443]

VIEWER_PREFERENCES_PRINTSCALING_APPDEFAULT = 1<<25
Print dialog default setting: set scaling to application default value.



Tags:

see:  setViewerPreferences()

[ Top ]



VIEWER_PREFERENCES_PRINTSCALING_NONE [line 436]

VIEWER_PREFERENCES_PRINTSCALING_NONE = 1<<24
Print dialog default setting: disabled scaling



Tags:

see:  setViewerPreferences()

[ Top ]




Documentation generated on Tue, 01 Jul 2014 14:42:56 +0200 by phpDocumentor 1.4.3