PrintAttributes
class PrintAttributes : Parcelable
kotlin.Any | |
↳ | android.print.PrintAttributes |
This class represents the attributes of a print job. These attributes describe how the printed content should be laid out. For example, the print attributes may state that the content should be laid out on a letter size with 300 DPI (dots per inch) resolution, have a margin of 10 mills (thousand of an inch) on all sides, and be black and white.
Summary
Nested classes | |
---|---|
Builder for creating |
|
This class specifies content margins. |
|
This class specifies a supported media size. |
|
This class specifies a supported resolution in DPI (dots per inch). |
Constants | |
---|---|
static Int |
Color mode: Color color scheme, for example many colors are used. |
static Int |
Color mode: Monochrome color scheme, for example one color is used. |
static Int |
Duplex mode: Pages are turned sideways along the long edge - like a book. |
static Int |
Duplex mode: No duplexing. |
static Int |
Duplex mode: Pages are turned upwards along the short edge - like a notpad. |
Inherited constants | |
---|---|
Public methods | |
---|---|
Int | |
Boolean |
Indicates whether some other object is "equal to" this one. |
Int |
Gets the color mode. |
Int |
Gets the duplex mode. |
PrintAttributes.MediaSize? |
Gets the media size. |
PrintAttributes.Margins? |
Gets the minimal margins. |
PrintAttributes.Resolution? |
Gets the resolution. |
Int |
hashCode() |
String |
toString() |
Unit |
writeToParcel(parcel: Parcel, flags: Int) |
Properties | |
---|---|
static Parcelable.Creator<PrintAttributes!> |
Constants
COLOR_MODE_COLOR
static val COLOR_MODE_COLOR: Int
Color mode: Color color scheme, for example many colors are used.
Value: 2
COLOR_MODE_MONOCHROME
static val COLOR_MODE_MONOCHROME: Int
Color mode: Monochrome color scheme, for example one color is used.
Value: 1
DUPLEX_MODE_LONG_EDGE
static val DUPLEX_MODE_LONG_EDGE: Int
Duplex mode: Pages are turned sideways along the long edge - like a book.
Value: 2
DUPLEX_MODE_NONE
static val DUPLEX_MODE_NONE: Int
Duplex mode: No duplexing.
Value: 1
DUPLEX_MODE_SHORT_EDGE
static val DUPLEX_MODE_SHORT_EDGE: Int
Duplex mode: Pages are turned upwards along the short edge - like a notpad.
Value: 4
Public methods
describeContents
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
equals
fun equals(other: Any?): Boolean
Indicates whether some other object is "equal to" this one.
The equals
method implements an equivalence relation on non-null object references:
- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.
Parameters | |
---|---|
obj |
This value may be null . |
Return | |
---|---|
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getColorMode
fun getColorMode(): Int
Gets the color mode.
Return | |
---|---|
Int |
The color mode or zero if not set. Value is 0 or greater |
See Also
getDuplexMode
fun getDuplexMode(): Int
Gets the duplex mode.
Return | |
---|---|
Int |
The duplex mode or zero if not set. Value is 0 or greater |
getMediaSize
fun getMediaSize(): PrintAttributes.MediaSize?
Gets the media size.
Return | |
---|---|
PrintAttributes.MediaSize? |
The media size or null if not set. |
getMinMargins
fun getMinMargins(): PrintAttributes.Margins?
Gets the minimal margins. If the content does not fit these margins it will be clipped.
These margins are physically imposed by the printer and they are not rotated, i.e. they are the same for both portrait and landscape. For example, a printer may not be able to print in a stripe on both left and right sides of the page.
Return | |
---|---|
PrintAttributes.Margins? |
The margins or null if not set. |
getResolution
fun getResolution(): PrintAttributes.Resolution?
Gets the resolution.
Return | |
---|---|
PrintAttributes.Resolution? |
The resolution or null if not set. |
toString
fun toString(): String
Return | |
---|---|
String |
a string representation of the object. |
writeToParcel
fun writeToParcel(
parcel: Parcel,
flags: Int
): Unit
Parameters | |
---|---|
dest |
The Parcel in which the object should be written. This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |