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