TdxReport.ExportTimeout Property
Specifies the timeout interval (in milliseconds) for all synchronous report export operations.
Declaration
property ExportTimeout: Integer read; write; default 5000;
Property Value
Type | Default | Description |
---|---|---|
Integer | 5000 | The export timeout interval, in milliseconds. |
Remarks
Use the ExportTimeout
property to adjust the timeout interval for synchronous export operations depending on the expected report size. The ExportTimeout
property does not affect asynchronous export operations.
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 a 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.
- ExportToMHT
- Exports report content to a stream as a MIME HTML 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 5000
.
See Also