Global Index (short | long) | Local contents | Local Index (short | long)
pj = start( pj )
START Method to start a print job.
Shows platform/device independent dialog to user if PrintJob is in
verbose mode. If possible it interagates current window system printer
to find out what options it supports in preperation for rendering. After
user finishes with dialog box the PrintJob's state will reflect options
chosen.
Ex:
pj = START( pj );
See also PRINT, PRINTOPT, PREPARE.
| This function is called by | |
|---|---|
function pj = start( pj )
% Copyright 1984-2000 The MathWorks, Inc.
% $Revision: 1.2 $ $Date: 2000/06/01 02:54:08 $
pj.Active = 1;
%Get internal drivers wound up
if feature('NewPrintAPI')
pj.Error = hardcopy( pj, 'start' );
end