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

All Superinterfaces:
IClone
All Known Implementing Classes:
ExportOptions

public interface IExportOptions
extends IClone

This interface provides properties and methods for retrieving information and setting options for exporting your report (such as export format and destination).


Method Summary
 ReportExportFormat getExportFormatType()
           Returns the format type for the exported report (for example, text, Microsoft Excel (97-2003), etc.).
 java.lang.Object getFormatOptions()
           Returns the formatting options specified for the export format type.
 void setExportFormatType(ReportExportFormat exportFormatType)
           Sets the format type for the exported report (for example, text, Microsoft Excel (97-2003), etc.).
 void setFormatOptions(IExportFormatOptions formatOptions)
           Sets the formatting options specified for the export format type.
 void setFormatOptions(java.lang.Object formatOptions)
          Deprecated. use setFormatOptions(IExportFormatOptions)
 

Method Detail

getExportFormatType

ReportExportFormat getExportFormatType()

Returns the format type for the exported report (for example, text, Microsoft Excel (97-2003), etc.).

Returns:
A ReportExportFormat object that specifies the format type of the exported report.

getFormatOptions

java.lang.Object getFormatOptions()

Returns the formatting options specified for the export format type.

Returns:
An IExportFormatOptions that specifies the formatting options specified for the export format type.

setExportFormatType

void setExportFormatType(ReportExportFormat exportFormatType)

Sets the format type for the exported report (for example, text, Microsoft Excel (97-2003), etc.).

Parameters:
exportFormatType - A ReportExportFormat object that specifies the format type of the exported report.

setFormatOptions

void setFormatOptions(java.lang.Object formatOptions)
Deprecated. use setFormatOptions(IExportFormatOptions)


setFormatOptions

void setFormatOptions(IExportFormatOptions formatOptions)

Sets the formatting options specified for the export format type.

Parameters:
formatOptions - An IExportFormatOptions that specifies the formatting options specified for the export format type.