public
static
final
class
PdfDocument.PageInfo.Builder
extends Object
java.lang.Object | |
↳ | android.graphics.pdf.PdfDocument.PageInfo.Builder |
Builder for creating a PdfDocument.PageInfo
.
Public constructors | |
---|---|
PdfDocument.PageInfo.Builder(int pageWidth, int pageHeight, int pageNumber)
Creates a new builder with the mandatory page info attributes. |
Public methods | |
---|---|
PdfDocument.PageInfo
|
create()
Creates a new |
PdfDocument.PageInfo.Builder
|
setContentRect(Rect contentRect)
Sets the content rectangle in PostScript point (1/72th of an inch). |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
PdfDocument.PageInfo.Builder (int pageWidth, int pageHeight, int pageNumber)
Creates a new builder with the mandatory page info attributes.
Parameters | |
---|---|
pageWidth |
int :
The page width in PostScript (1/72th of an inch). |
pageHeight |
int :
The page height in PostScript (1/72th of an inch). |
pageNumber |
int :
The page number.
|
PdfDocument.PageInfo create ()
Creates a new PdfDocument.PageInfo
.
Returns | |
---|---|
PdfDocument.PageInfo |
The new instance. |
PdfDocument.PageInfo.Builder setContentRect (Rect contentRect)
Sets the content rectangle in PostScript point (1/72th of an inch). This is the area that contains the page content and is relative to the page top left.
Parameters | |
---|---|
contentRect |
Rect :
The content rectangle. Must fit in the page.
|
Returns | |
---|---|
PdfDocument.PageInfo.Builder |