TdxDashboard.ExportTo(TdxDashboardExportFormat,TStream) Method
Exports dashboard content to a stream in any supported format.
Declaration
procedure ExportTo(AFormat: TdxDashboardExportFormat; AStream: TStream); overload;
Parameters
| Name | Type | Description |
|---|---|---|
| AFormat | TdxDashboardExportFormat | The target export format. Refer to the following section for details: Available Export Formats. |
| AStream | TStream | The target stream. |
Remarks
Call the ExportTo procedure to export dashboard content to a stream in any supported format. You can use the ExportTimeout property to set a timeout interval (in milliseconds) for export operations.
Available Export Formats
Pass one of the following values as the AFormat parameter to export dashboard content in the corresponding format:
| AFormat Parameter Value | Content Format |
|---|---|
| TdxDashboardExportFormat.CSV | Comma-Separated Values (CSV) |
| TdxDashboardExportFormat.GIF | Graphics Interchange Format (GIF) |
| TdxDashboardExportFormat.JPG | Joint Photographic Experts Group (JPEG) |
| TdxDashboardExportFormat.PDF | Portable Document Format (PDF) |
| TdxDashboardExportFormat.PNG | Portable Network Graphics (PNG) |
| TdxDashboardExportFormat.SVG | Scalable Vector Graphics (SVG) |
| TdxDashboardExportFormat.XLS | Microsoft Excel® Binary Format (XLS) |
| TdxDashboardExportFormat.XLSX | Office OpenXML Spreadsheet Format (XLSX) |
See Also