Back to Devexpress

TdxDashboardExportFormat Enum

vcl-dxbackend-cd780b05.md

latest3.3 KB
Original Source

TdxDashboardExportFormat Enum

Enumerates formats available for dashboard export operations.

Declaration

delphi
TdxDashboardExportFormat = (
    PDF,
    XLS,
    XLSX,
    CSV,
    PNG,
    JPG,
    GIF,
    SVG
);

Members

NameDescriptionFormat-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

|

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. See Also

TdxDashboardUIExportFormat Type

TdxReportExportFormat Type

dxBackend Unit