TdxCustomDashboardControl.ExportTimeout Property
Specifies the timeout interval (in milliseconds) for all dashboard 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 content size. If the specified export timeout is reached, an exception is thrown.
Affected Export Methods
- ExportTo
- Exports dashboard content to a stream in any supported format.
- ExportToCSV
- Exports dashboard content to a stream in the comma-separated values (CSV) format.
- ExportToGIF
- Exports dashboard content to a stream in the Graphics Interchange Format (GIF).
- ExportToJPG
- Exports dashboard content in the JPEG format.
- ExportToPDF
- Exports dashboard content to a stream in the Portable Document Format (PDF).
- ExportToPNG
- Exports dashboard content to a stream in the Portable Network Graphics (PNG) format.
- ExportToSVG
- Exports dashboard content to a stream in the Scalable Vector Graphics (SVG) format.
- ExportToXLS
- Exports dashboard content to a stream in the Microsoft Excel® binary format (XLS).
- ExportToXLSX
- Exports dashboard content to a stream in the Office OpenXML 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