[]
Exports the specified document to a text format file.
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 a text format 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 the specified stream in Rich Text Format.
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 text to. |
Exports the specified document to the specified stream in text format.
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 text 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. |