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

All Superinterfaces:
IClone, IExportFormatOptions
All Known Subinterfaces:
IEditableRTFExportFormatOptions, IExcelExportFormatOptions, IPDFExportFormatOptions, IRTFWordExportFormatOptions
All Known Implementing Classes:
EditableRTFExportFormatOptions, ExcelExportFormatOptions, PageBasedExportFormatOptions, PDFExportFormatOptions, RTFWordExportFormatOptions

public interface IPageBasedExportFormatOptions
extends IExportFormatOptions

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 Microsoft Excel (97-2003), PDF, Rich Text Format (RTF), and Microsoft Word (97-2003).


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 end page of a page export range, when exporting to a page-based format.
 void setStartPageNumber(int pageNumber)
           Sets the start page of a page export range, when exporting to a page-based format.
 
Methods inherited from interface com.crystaldecisions.sdk.occa.report.exportoptions.IExportFormatOptions
checkValidity
 

Method Detail

getEndPageNumber

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

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

void setEndPageNumber(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.

setStartPageNumber

void setStartPageNumber(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.