Loading...

//scanning/com.pixelnetica.scanning/ImageWriter/Dimension/Units

Units

[androidJvm]
enum Units : Enum<ImageWriter.Dimension.Units>

Specify paper dimensions units

Entries

  
Millimeters[androidJvm]
Millimeters
SI millimeters
Inches[androidJvm]
Inches
US/Imperial inches
Dpi72[androidJvm]
Dpi72
Printable units

Properties

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

Functions

NameSummary
valueOf[androidJvm]
fun valueOf(value: String): ImageWriter.Dimension.Units
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.Dimension.Units>
Returns an array containing the constants of this enum type, in the order they’re declared.
Top