com.crystaldecisions.sdk.occa.report.exportoptions
Interface IPageBasedExportFormatOptions

All Known Subinterfaces:
IPDFExportFormatOptions, IRTFWordExportFormatOptions
All Known Implementing Classes:
PageBasedExportFormatOptions, PDFExportFormatOptions, RTFWordExportFormatOptions

public interface IPageBasedExportFormatOptions

This interface defines export options used when exporting to a page based export format. This includes specifying a range of pages to be exported. Page based export formats include PDF and RTF.


Method Summary
 int getEndPageNumber()
           Returns the end page, of a page export range, when exporting to a page based format.
 int getStartPageNumber()
           Returns the start page, of a page export range, when exporting to a page based format.
 void setEndPageNumber(int pageNumber)
           Sets the start page, of a page export range, when exporting to a page based format.
 void setStartPageNumber(int pageNumber)
           Sets the end page, of a page export range, when exporting to a page based format.
 

Method Detail

getEndPageNumber

public int getEndPageNumber()

Returns the end page, of a page export range, when exporting to a page based format. By default, all pages in the report are exported.

Returns:
An int that specifies the end page.

getStartPageNumber

public int getStartPageNumber()

Returns the start page, of a page export range, when exporting to a page based format. By default, all pages in the report are exported.

Returns:
An int that specifies the start page.

setEndPageNumber

public void setEndPageNumber(int pageNumber)

Sets the start page, of a page export range, when exporting to a page based format. By default, all pages in the report are exported.

Parameters:
pageNumber - An int that specifies the start page.

setStartPageNumber

public void setStartPageNumber(int pageNumber)

Sets the end page, of a page export range, when exporting to a page based format. By default, all pages in the report are exported.

Parameters:
pageNumber - An int that specifies the end page.