[]
Exports the specified document to a .xls file.
public void Export(SectionDocument document, string filePath)
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. |
Exports the specified document to Excel.
public void Export(SectionDocument document, string filePath, string pageRange)
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. |
Exports the specified document to Excel.
public void Export(SectionDocument document, Stream outputStream)
Type | Name | Description |
---|---|---|
SectionDocument | document | The ActiveReports Document object to export. |
Stream | outputStream | The Stream to write the Excel workbook to. |
Exports the specified document to Excel.
public void Export(SectionDocument document, Stream outputStream, string pageRange)
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. |
Exports the specified document.
public void Export(SectionDocument document, IOutputHtml outputHandler, string pageRange)
Type | Name | Description |
---|---|---|
SectionDocument | document | The document to be exported. |
IOutputHtml | outputHandler | The output handler. |
string | pageRange | The page range. |