[]
Exports the specified document to a TIFF 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 TIFF 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 TIFF.
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 RTF to. |
Exports the specified document to the specified stream in TIFF.
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 TIFF data 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. |