//scanning/com.pixelnetica.scanning/ImageWriter/Paper/Size

Size

[androidJvm]
enum Size : Enum<ImageWriter.Paper.Size>

Some predefined paper sizes

Entries

   
Letter [androidJvm]
Letter
Legal [androidJvm]
Legal
A3 [androidJvm]
A3
A4 [androidJvm]
A4
A5 [androidJvm]
A5
B4 [androidJvm]
B4
B5 [androidJvm]
B5
Executive [androidJvm]
Executive
US4x6 [androidJvm]
US4x6
US4x8 [androidJvm]
US4x8
US5x7 [androidJvm]
US5x7
COMM10 [androidJvm]
COMM10
BusinessCard [androidJvm]
BusinessCard

Properties

Name Summary
entries [androidJvm]
val entries: EnumEntries<ImageWriter.Paper.Size>
Returns a representation of an immutable list of all enum entries, in the order they’re declared.

Functions

Name Summary
valueOf [androidJvm]
fun valueOf(value: String): ImageWriter.Paper.Size
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
values [androidJvm]
fun values(): Array<ImageWriter.Paper.Size>
Returns an array containing the constants of this enum type, in the order they’re declared.
Top