time | Calls | line |
---|
| | 173 | function ispage = locIsPageFormatOrPrinter(pj)
|
0.001 | 12 | 174 | ispage = (isempty(pj.DriverClass) || ... % caller didn't specify a -d device
|
| 12 | 175 | strncmpi(pj.Driver, 'win', 3) || ... % or we're going directly to printer on windows
|
| 12 | 176 | strcmp(pj.DriverClass, 'PR') || ... % or we're going directly to printer on any platform
|
| 12 | 177 | (strcmp(pj.DriverClass, 'MW') && ~pj.DriverExport) || ... % printer on windows
|
| 12 | 178 | any(strncmpi(pj.Driver, {'pdf', 'ps', 'psc'}, 2)));
|
Other subfunctions in this file are not included in this listing.