Package com.lowagie.text.pdf
Class PdfPage
java.lang.Object
com.lowagie.text.pdf.PdfObject
com.lowagie.text.pdf.PdfDictionary
com.lowagie.text.pdf.PdfPage
PdfPage is the PDF Page-object.
A Page object is a dictionary whose keys describe a single page containing text,
graphics, and images. A Page object is a leaf of the Pages tree.
This object is described in the 'Portable Document Format Reference Manual version 1.3'
section 6.4 (page 73-81)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PdfNumbervalue of the Rotate key for a page in INVERTEDPORTRAITstatic final PdfNumbervalue of the Rotate key for a page in LANDSCAPEstatic final PdfNumbervalue of the Rotate key for a page in PORTRAITstatic final PdfNumbervalue of the Rotate key for a page in SEASCAPE -
Method Summary
Modifier and TypeMethodDescriptionbooleanisParent()Checks if this page element is a tree of pages.Methods inherited from class com.lowagie.text.pdf.PdfDictionary
contains, get, getAsArray, getAsBoolean, getAsDict, getAsIndirectObject, getAsName, getAsNumber, getAsStream, getAsString, getDirectObject, getKeys, isCatalog, isFont, isOutlineTree, isPage, isPages, merge, mergeDifferent, put, putAll, putEx, remove, size, toPdf, toStringMethods inherited from class com.lowagie.text.pdf.PdfObject
canBeInObjStm, getBytes, getIndRef, isArray, isBoolean, isDictionary, isIndirect, isName, isNull, isNumber, isStream, isString, length, setContent, setIndRef, type
-
Field Details
-
PORTRAIT
value of the Rotate key for a page in PORTRAIT -
LANDSCAPE
value of the Rotate key for a page in LANDSCAPE -
INVERTEDPORTRAIT
value of the Rotate key for a page in INVERTEDPORTRAIT -
SEASCAPE
value of the Rotate key for a page in SEASCAPE
-
-
Method Details
-
isParent
public boolean isParent()Checks if this page element is a tree of pages.This method always returns
false.- Returns:
falsebecause this is a single page
-