Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V25.2
  • 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)

    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