Liking cljdoc? Tell your friends :D

jdk.awt.print.Paper

The Paper class describes the physical characteristics of a piece of paper.

When creating a Paper object, it is the application's responsibility to ensure that the paper size and the imageable area are compatible. For example, if the paper size is changed from 11 x 17 to 8.5 x 11, the application might need to reduce the imageable area so that whatever is printed fits on the page.

The Paper class describes the physical characteristics of
a piece of paper.

When creating a Paper object, it is the application's
responsibility to ensure that the paper size and the imageable area
are compatible.  For example, if the paper size is changed from
11 x 17 to 8.5 x 11, the application might need to reduce the
imageable area so that whatever is printed fits on the page.
raw docstring

->paperclj

(->paper)

Constructor.

Creates a letter sized piece of paper with one inch margins.

Constructor.

Creates a letter sized piece of paper
 with one inch margins.
raw docstring

cloneclj

(clone this)

Creates a copy of this Paper with the same contents as this Paper.

returns: a copy of this Paper. - java.lang.Object

Creates a copy of this Paper with the same contents
 as this Paper.

returns: a copy of this Paper. - `java.lang.Object`
raw docstring

get-heightclj

(get-height this)

Returns the height of the page in 1/72nds of an inch.

returns: the height of the page described by this Paper. - double

Returns the height of the page in 1/72nds of an inch.

returns: the height of the page described by this
          Paper. - `double`
raw docstring

get-imageable-heightclj

(get-imageable-height this)

Returns the height of this Paper object's imageable area.

returns: the height of the imageable area. - double

Returns the height of this Paper object's imageable
 area.

returns: the height of the imageable area. - `double`
raw docstring

get-imageable-widthclj

(get-imageable-width this)

Returns the width of this Paper object's imageable area.

returns: the width of the imageable area. - double

Returns the width of this Paper object's imageable
 area.

returns: the width of the imageable area. - `double`
raw docstring

get-imageable-xclj

(get-imageable-x this)

Returns the x coordinate of the upper-left corner of this Paper object's imageable area.

returns: the x coordinate of the imageable area. - double

Returns the x coordinate of the upper-left corner of this
 Paper object's imageable area.

returns: the x coordinate of the imageable area. - `double`
raw docstring

get-imageable-yclj

(get-imageable-y this)

Returns the y coordinate of the upper-left corner of this Paper object's imageable area.

returns: the y coordinate of the imageable area. - double

Returns the y coordinate of the upper-left corner of this
 Paper object's imageable area.

returns: the y coordinate of the imageable area. - `double`
raw docstring

get-widthclj

(get-width this)

Returns the width of the page in 1/72nds of an inch.

returns: the width of the page described by this Paper. - double

Returns the width of the page in 1/72nds
 of an inch.

returns: the width of the page described by this
 Paper. - `double`
raw docstring

set-imageable-areaclj

(set-imageable-area this x y width height)

Sets the imageable area of this Paper. The imageable area is the area on the page in which printing occurs.

x - the X coordinate to which to set the upper-left corner of the imageable area of this Paper - double y - the Y coordinate to which to set the upper-left corner of the imageable area of this Paper - double width - the value to which to set the width of the imageable area of this Paper - double height - the value to which to set the height of the imageable area of this Paper - double

Sets the imageable area of this Paper.  The
 imageable area is the area on the page in which printing
 occurs.

x - the X coordinate to which to set the upper-left corner of the imageable area of this Paper - `double`
y - the Y coordinate to which to set the upper-left corner of the imageable area of this Paper - `double`
width - the value to which to set the width of the imageable area of this Paper - `double`
height - the value to which to set the height of the imageable area of this Paper - `double`
raw docstring

set-sizeclj

(set-size this width height)

Sets the width and height of this Paper object, which represents the properties of the page onto which printing occurs. The dimensions are supplied in 1/72nds of an inch.

width - the value to which to set this Paper object's width - double height - the value to which to set this Paper object's height - double

Sets the width and height of this Paper
 object, which represents the properties of the page onto
 which printing occurs.
 The dimensions are supplied in 1/72nds of
 an inch.

width - the value to which to set this Paper object's width - `double`
height - the value to which to set this Paper object's height - `double`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close