Packageflash.printing
Classpublic final class PrintMethod
InheritancePrintMethod Inheritance Object

Language version: ActionScript 3.0
Runtime version: AIR 2

This class provides values for the PrintJobOptions.printMethod property to specify the method of printing a page.

See also

PrintJobOptions.printMethod


Public Properties
 PropertyDefined by
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined by
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined 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
Constant detail
AUTOconstant
public static const AUTO:String = "auto"

Language version: ActionScript 3.0
Runtime version: 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.

See also

BITMAPconstant 
public static const BITMAP:String = "bitmap"

Language version: ActionScript 3.0
Runtime version: AIR 2

The bitmap method of printing.

This constant is used with the PrintJobOptions.printMethod property. Use the syntax PrintMethod.BITMAP.

See also

VECTORconstant 
public static const VECTOR:String = "vector"

Language version: ActionScript 3.0
Runtime version: AIR 2

The vector method of printing.

This constant is used with the PrintJobOptions.printMethod property. Use the syntax PrintMethod.VECTOR.

See also