Back to Devexpress

TdxDashboardUIExportFormat Enum

vcl-dxbackend-edf47a66.md

latest3.3 KB
Original Source

TdxDashboardUIExportFormat Enum

Enumerates dashboard format groups for export operations available in the UI.

Declaration

delphi
TdxDashboardUIExportFormat = (
    PDF,
    Excel,
    Image
);

Members

NameDescription
PDF

Portable Document Format (PDF).

| | Excel |

Microsoft Excel® Spreadsheet Formats (XLSX and XLS).

| | Image |

All supported image formats (GIF, JPG, PNG, and SVG).

|

Remarks

The Web-based Dashboard Viewer dialog allows users to export the current dashboard or individual dashboard in any supported document or image format.

Export To Menu and Format Groups

The TdxDashboardUIExportFormat type enumerates export format groups displayed when a user clicks an Export To button within the Dashboard Viewer dialog:

Export To Dialog

A click on a menu item displays the corresponding modal dialog designed to select the required format and associated export settings:

Available Options

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.

Direct TdxDashboardUIExportFormat Type References

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

TdxDashboardExportFormat Type

TdxReportExportFormat Type

dxBackend Unit