Adobe® Flex® 4 Language Reference
Show Packages and Classes List |  Packages  |  Classes  |  Index  |  Appendixes
flash.printing 
PrintMethod 
Packageflash.printing
Classpublic final class PrintMethod
InheritancePrintMethod Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

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

See also



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
  AIR-only AUTO : String = "auto"
[static] Automatic selection of the best method of printing.
PrintMethod
  AIR-only BITMAP : String = "bitmap"
[static] The bitmap method of printing.
PrintMethod
  AIR-only VECTOR : String = "vector"
[static] The vector method of printing.
PrintMethod
Constant Detail
AIR-only 

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.

See also

AIR-only 

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.

See also

AIR-only 

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.

See also