TdxReport.ExportTimeout Property
Specifies the timeout interval (in milliseconds) for all report export operations.
Declaration
property ExportTimeout: Cardinal read; write; default INFINITE;
Property Value
| Type | Default | Description |
|---|---|---|
| Cardinal | INFINITE | The timeout interval for export operations, in milliseconds. |
Remarks
Use the ExportTimeout property to specify a timeout interval for export operations depending on expected report size. If the specified export timeout is reached, an exception is thrown.
Affected Export Methods
- ExportTo
- Exports report content to a stream in any supported format.
- ExportToCSV
- Exports report content to a stream in the comma-separated values (CSV) format.
- ExportToDOCX
- Exports report content to a stream as an Office OpenXML (DOCX) document.
- ExportToHTML
- Exports report content to a stream as an HTML document.
- ExportToImage
Exports report content to a stream in the current image export format (selected using the Report Designer dialog).
The default image export format is PNG (Portable Network Graphics).
- ExportToMHT
- Exports report content to a stream as a MIME HTML (MHT) document.
- ExportToPDF
- Exports report content to a stream in PDF format.
- ExportToText
- Exports report content to a stream as plain text.
- ExportToXLS
- Exports report content to a stream in Microsoft Excel® binary format (XLS).
- ExportToXLSX
- Exports report content to a stream in Office Open XML spreadsheet format (XLSX).
Default Value
The ExportTimeout property’s default value is INFINITE.
The default ExportTimeout property value indicates that export operations have no timeout interval.
See Also