vcl-dxbackend-edf47a66.md
Enumerates dashboard format groups for export operations available in the UI.
TdxDashboardUIExportFormat = (
PDF,
Excel,
Image
);
| Name | Description |
|---|---|
PDF |
Portable Document Format (PDF).
|
| Excel |
Microsoft Excel® Spreadsheet Formats (XLSX and XLS).
|
| Image |
All supported image formats (GIF, JPG, PNG, and SVG).
|
The Web-based Dashboard Viewer dialog allows users to export the current dashboard or individual dashboard in any supported document or image format.
The TdxDashboardUIExportFormat type enumerates export format groups displayed when a user clicks an Export To button within the Dashboard Viewer dialog:
A click on a menu item displays the corresponding modal dialog designed to select the required format and associated export settings:
You can use the TdxCustomDashboardControl.ExportFormats property to specify export format groups available to users.
Note
TdxDashboardUIExportFormat 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 TdxDashboardUIExportFormat.Image (in Delphi) or TdxDashboardUIExportFormat::Image (in C++Builder) to refer to the Image value in code.
The following public APIs reference the TdxDashboardUIExportFormat type:
AllDashboardUIExportFormatsA set of flags that correspond to all export format groups available to users in the Dashboard Viewer dialog UI.TdxDashboardUIExportFormatsA set of flags that correspond to export format groups available to users in the Dashboard Viewer dialog UI. See Also