Methods Summary |
---|
public short | getCopies()Returns the number of copies.
return printSetupRecord.getCopies();
|
public boolean | getDraft()Returns the draft mode.
return printSetupRecord.getDraft();
|
public short | getFitHeight()Returns the number of pages high to fit the sheet in.
return printSetupRecord.getFitHeight();
|
public short | getFitWidth()Returns the number of pages wide to fit sheet in.
return printSetupRecord.getFitWidth();
|
public double | getFooterMargin()Returns the footer margin.
return printSetupRecord.getFooterMargin();
|
public short | getHResolution()Returns the horizontal resolution.
return printSetupRecord.getHResolution();
|
public double | getHeaderMargin()Returns the header margin.
return printSetupRecord.getHeaderMargin();
|
public boolean | getLandscape()Returns the landscape mode.
return !printSetupRecord.getLandscape();
|
public boolean | getLeftToRight()Returns the left to right print order.
return printSetupRecord.getLeftToRight();
|
public boolean | getNoColor()Returns the black and white setting.
return printSetupRecord.getNoColor();
|
public boolean | getNoOrientation()Returns the no orientation.
return printSetupRecord.getNoOrientation();
|
public boolean | getNotes()Returns the print notes.
return printSetupRecord.getNotes();
|
public short | getOptions()Returns the bit flags for the options.
return printSetupRecord.getOptions();
|
public short | getPageStart()Returns the page start.
return printSetupRecord.getPageStart();
|
public short | getPaperSize()Returns the paper size.
return printSetupRecord.getPaperSize();
|
public short | getScale()Returns the scale.
return printSetupRecord.getScale();
|
public boolean | getUsePage()Returns the use page numbers.
return printSetupRecord.getUsePage();
|
public short | getVResolution()Returns the vertical resolution.
return printSetupRecord.getVResolution();
|
public boolean | getValidSettings()Returns the valid settings.
return printSetupRecord.getValidSettings();
|
public void | setCopies(short copies)Sets the number of copies.
printSetupRecord.setCopies(copies);
|
public void | setDraft(boolean d)Set whether it is in draft mode
printSetupRecord.setDraft(d);
|
public void | setFitHeight(short height)Set the number of pages high to fit the sheet in
printSetupRecord.setFitHeight(height);
|
public void | setFitWidth(short width)Set the number of pages wide to fit the sheet in
printSetupRecord.setFitWidth(width);
|
public void | setFooterMargin(double footermargin)Sets the footer margin.
printSetupRecord.setFooterMargin(footermargin);
|
public void | setHResolution(short resolution)Sets the horizontal resolution.
printSetupRecord.setHResolution(resolution);
|
public void | setHeaderMargin(double headermargin)Sets the header margin.
printSetupRecord.setHeaderMargin(headermargin);
|
public void | setLandscape(boolean ls)Set whether to print in landscape
printSetupRecord.setLandscape(!ls);
|
public void | setLeftToRight(boolean ltor)Set whether to go left to right or top down in ordering
printSetupRecord.setLeftToRight(ltor);
|
public void | setNoColor(boolean mono)Set whether it is black and white
printSetupRecord.setNoColor(mono);
|
public void | setNoOrientation(boolean orientation)Set no orientation. ?
printSetupRecord.setNoOrientation(orientation);
|
public void | setNotes(boolean printnotes)Print the include notes
printSetupRecord.setNotes(printnotes);
|
public void | setOptions(short options)Sets the options flags. Not advisable to do it directly.
printSetupRecord.setOptions(options);
|
public void | setPageStart(short start)Set the page numbering start.
printSetupRecord.setPageStart(start);
|
public void | setPaperSize(short size)Set the paper size.
printSetupRecord.setPaperSize(size);
|
public void | setScale(short scale)Set the scale.
printSetupRecord.setScale(scale);
|
public void | setUsePage(boolean page)Set whether to use page start
printSetupRecord.setUsePage(page);
|
public void | setVResolution(short resolution)Sets the vertical resolution.
printSetupRecord.setVResolution(resolution);
|
public void | setValidSettings(boolean valid)Valid settings. I'm not for sure.
printSetupRecord.setValidSettings(valid);
|