TdxDashboardExportFormat Enum
Enumerates formats available for dashboard export operations.
Declaration
TdxDashboardExportFormat = (
PDF,
XLS,
XLSX,
CSV,
PNG,
JPG,
GIF,
SVG
);
Members
| Name | Description | Format-Specific Export Method |
|---|---|---|
PDF
|
Portable Document Format (PDF) |
|
XLS
|
Microsoft Excel® Binary Format (XLS) |
|
XLSX
|
Office OpenXML Spreadsheet Format (XLSX) |
|
CSV
|
Comma-Separated Values (CSV) |
|
PNG
|
Portable Network Graphics (PNG) |
|
JPG
|
Joint Photographic Experts Group (JPEG) |
|
GIF
|
Graphics Interchange Format (GIF) |
|
SVG
|
Scalable Vector Graphics (SVG) |
Remarks
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.
Direct TdxDashboardExportFormat Type References
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.