[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Export.Excel.Section.XlsExport.Export

Export Method

Export(SectionDocument, string)

Exports the specified document to a .xls file.

Declaration
public void Export(SectionDocument document, string filePath)
Parameters
Type Name Description
SectionDocument document

The ActiveReports Document object to export.

string filePath

The file name and path to save the main html file to.

Implements

Export(SectionDocument, string, string)

Exports the specified document to Excel.

Declaration
public void Export(SectionDocument document, string filePath, string pageRange)
Parameters
Type Name Description
SectionDocument document

The ActiveReports Document object to export.

string filePath

The file name and path to save the main html file to.

string pageRange

A range of page numbers to export seperated by a comma. Between each comma can have a single page number, or range of pages with a hyphen between the starting and ending page numbers in the range.

Implements

Export(SectionDocument, Stream)

Exports the specified document to Excel.

Declaration
public void Export(SectionDocument document, Stream outputStream)
Parameters
Type Name Description
SectionDocument document

The ActiveReports Document object to export.

Stream outputStream

The Stream to write the Excel workbook to.

Implements

Export(SectionDocument, Stream, string)

Exports the specified document to Excel.

Declaration
public void Export(SectionDocument document, Stream outputStream, string pageRange)
Parameters
Type Name Description
SectionDocument document

The ActiveReports Document object to export.

Stream outputStream

The Stream to write the Excel workbook to.

string pageRange

A range of page numbers to export seperated by a comma. Between each comma can have a single page number, or range of pages with a hyphen between the starting and ending page numbers in the range.

Implements

Export(SectionDocument, IOutputHtml, string)

Exports the specified document.

Declaration
public void Export(SectionDocument document, IOutputHtml outputHandler, string pageRange)
Parameters
Type Name Description
SectionDocument document

The document to be exported.

IOutputHtml outputHandler

The output handler.

string pageRange

The page range.

Implements