vcl-dxbackend-cd780b05.md
Enumerates formats available for dashboard export operations.
TdxDashboardExportFormat = (
PDF,
XLS,
XLSX,
CSV,
PNG,
JPG,
GIF,
SVG
);
| Name | Description | Format-Specific Export Method |
|---|---|---|
PDF |
Portable Document Format (PDF)
|
TdxCustomDashboardControl.ExportToPDF
|
| XLS |
Microsoft Excel® Binary Format (XLS)
|
TdxCustomDashboardControl.ExportToXLS
|
| XLSX |
Office OpenXML Spreadsheet Format (XLSX)
|
TdxCustomDashboardControl.ExportToXLSX
|
| CSV |
Comma-Separated Values (CSV)
|
TdxCustomDashboardControl.ExportToCSV
|
| PNG |
Portable Network Graphics (PNG)
|
TdxCustomDashboardControl.ExportToPNG
|
| JPG |
Joint Photographic Experts Group (JPEG)
|
TdxCustomDashboardControl.ExportToJPG
|
| GIF |
Graphics Interchange Format (GIF)
|
TdxCustomDashboardControl.ExportToGIF
|
| SVG |
Scalable Vector Graphics (SVG)
|
TdxCustomDashboardControl.ExportToSVG
|
The TdxDashboardControl component can export content in multiple document (XLS, XLSX, and PDF) and image formats.
Note
TdxDashboardExportFormat is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxDashboardExportFormat.XLSX (in Delphi) or TdxDashboardExportFormat::XLSX (in C++Builder) to refer to the XLSX value in code.
The following dashboard export methods accept a TdxDashboardExportFormat as the AFormat parameter:
ExportTo(TdxDashboardExportFormat,TStream)Exports dashboard content to a stream in any supported format.ExportTo(TdxDashboardExportFormat,TStream,string)Exports dashboard content to a stream in any supported format. See Also