Package | flash.printing |
Class | public final class PrintUIOptions |
Inheritance | PrintUIOptions Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
uiOptions
parameter of the PrintJob.showPageSetupDialog()
or PrintJob.start2()
method.
For example, the following code uses a PrintUIOptions instance to specify the min and max page numbers when the Page Setup dialog is displayed:
import flash.printing.PrintJob; var myPrintJob:PrintJob = new PrintJob(); if (myPrintJob.supportsPageSetupDialog) { var uiOpt:PrintUIOptions = new PrintUIOptions(); uiOpt.minPage = 1; uiOpt.maxPage = 3; myPrintJob.showPageSetupDialog(uiOpt); }
See also
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
disablePageRange : Boolean = false
Specifies whether the page range in the print dialog is disabled (true) or
the user can edit it (false). | PrintUIOptions | ||
maxPage : uint = 0
The maxiumum page number the user can enter
in the print dialog. | PrintUIOptions | ||
minPage : uint = 0
The minimum page number a user can enter
in the print dialog. | PrintUIOptions | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object |
Method | Defined By | ||
---|---|---|---|
Creates a new PrintUIOptions object. | PrintUIOptions | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
disablePageRange | property |
public var disablePageRange:Boolean = false
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
Specifies whether the page range in the print dialog is disabled (true
) or
the user can edit it (false
). The default value is false
,
indicating that there is no restriction on editing the page range.
The default value is false.
maxPage | property |
public var maxPage:uint = 0
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
The maxiumum page number the user can enter in the print dialog. The default value is 0, indicating that there is no restriction on the maximum page number.
The default value is 0.
minPage | property |
public var minPage:uint = 0
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
The minimum page number a user can enter in the print dialog. The default value is 0, indicating that there is no restriction on the minimum page number.
The default value is 0.
PrintUIOptions | () | Constructor |
public function PrintUIOptions()
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
Creates a new PrintUIOptions object. You pass this object to the
uiOptions
parameter of the PrintJob.showPageSetupDialog()
or PrintJob.start2()
method.
See also
Thu May 20 2010, 02:19 AM -07:00