- java.lang.Object
-
- java.awt.print.Paper
-
- All Implemented Interfaces:
- Cloneable
public class Paper extends Object implements Cloneable
ThePaper
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.
-
-
Constructor Summary
Constructors Constructor and Description Paper()
Creates a letter sized piece of paper with one inch margins.
-
Method Summary
Methods Modifier and Type Method and Description Object
clone()
Creates a copy of thisPaper
with the same contents as thisPaper
.double
getHeight()
Returns the height of the page in 1/72nds of an inch.double
getImageableHeight()
Returns the height of thisPaper
object's imageable area.double
getImageableWidth()
Returns the width of thisPaper
object's imageable area.double
getImageableX()
Returns the x coordinate of the upper-left corner of thisPaper
object's imageable area.double
getImageableY()
Returns the y coordinate of the upper-left corner of thisPaper
object's imageable area.double
getWidth()
Returns the width of the page in 1/72nds of an inch.void
setImageableArea(double x, double y, double width, double height)
Sets the imageable area of thisPaper
.void
setSize(double width, double height)
Sets the width and height of thisPaper
object, which represents the properties of the page onto which printing occurs.
-
-
-
Constructor Detail
-
Paper
public Paper()
Creates a letter sized piece of paper with one inch margins.
-
-
Method Detail
-
clone
public Object clone()
Creates a copy of thisPaper
with the same contents as thisPaper
.
-
getHeight
public double getHeight()
Returns the height of the page in 1/72nds of an inch.- Returns:
- the height of the page described by this
Paper
.
-
setSize
public void setSize(double width, double height)
Sets the width and height of thisPaper
object, which represents the properties of the page onto which printing occurs. The dimensions are supplied in 1/72nds of an inch.- Parameters:
width
- the value to which to set thisPaper
object's widthheight
- the value to which to set thisPaper
object's height
-
getWidth
public double getWidth()
Returns the width of the page in 1/72nds of an inch.- Returns:
- the width of the page described by this
Paper
.
-
setImageableArea
public void setImageableArea(double x, double y, double width, double height)
Sets the imageable area of thisPaper
. The imageable area is the area on the page in which printing occurs.- Parameters:
x
- the X coordinate to which to set the upper-left corner of the imageable area of thisPaper
y
- the Y coordinate to which to set the upper-left corner of the imageable area of thisPaper
width
- the value to which to set the width of the imageable area of thisPaper
height
- the value to which to set the height of the imageable area of thisPaper
-
getImageableX
public double getImageableX()
Returns the x coordinate of the upper-left corner of thisPaper
object's imageable area.- Returns:
- the x coordinate of the imageable area.
-
getImageableY
public double getImageableY()
Returns the y coordinate of the upper-left corner of thisPaper
object's imageable area.- Returns:
- the y coordinate of the imageable area.
-
getImageableWidth
public double getImageableWidth()
Returns the width of thisPaper
object's imageable area.- Returns:
- the width of the imageable area.
-
getImageableHeight
public double getImageableHeight()
Returns the height of thisPaper
object's imageable area.- Returns:
- the height of the imageable area.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/print/paper.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.