Package | flash.printing |
Class | public final class PrintMethod |
Inheritance | PrintMethod Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
PrintJobOptions.printMethod
property
to specify the method of printing a page.
Related API Elements
Constant | Defined By | ||
---|---|---|---|
AUTO : String = "auto" [static]
Automatic selection of the best method of printing. | PrintMethod | ||
BITMAP : String = "bitmap" [static]
The bitmap method of printing. | PrintMethod | ||
VECTOR : String = "vector" [static]
The vector method of printing. | PrintMethod |
AUTO | Constant |
public static const AUTO:String = "auto"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
Automatic selection of the best method of printing. This value indicates that vector or bitmap printing is chosen automatically, based on the content to print. Vector printing is used whenever the content can be faithfully reproduced by that method. If transparency or certain other effects are present, bitmap printing is used instead.
This constant is used with the PrintJobOptions.printMethod
property.
Use the syntax PrintMethod.AUTO
.
Related API Elements
BITMAP | Constant |
public static const BITMAP:String = "bitmap"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
The bitmap method of printing.
This constant is used with the PrintJobOptions.printMethod
property.
Use the syntax PrintMethod.BITMAP
.
Related API Elements
VECTOR | Constant |
public static const VECTOR:String = "vector"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
The vector method of printing.
This constant is used with the PrintJobOptions.printMethod
property.
Use the syntax PrintMethod.VECTOR
.
Related API Elements
Wed Nov 21 2018, 06:34 AM -08:00