Package com.inet.pdfc.presenter
Interface ExportFilePresenter.HasPrintRange
-
- Enclosing class:
- ExportFilePresenter
public static interface ExportFilePresenter.HasPrintRangeInterface for PrintToX which have a Print-Range property.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetPrintRange(int from, int to)Set the range of pages to render into the pdf.
If both parameters are -1, all pages will be printed.
-
-
-
Method Detail
-
setPrintRange
void setPrintRange(int from, int to)Set the range of pages to render into the pdf.
If both parameters are -1, all pages will be printed. This is the default setting.- Parameters:
from- the first page to include, 0-based.to- the last page to include, must be greater or equal to from and smaller thanPrintPainter.calculatePages(int, int).
-
-