Skip to main content
All docs
V26.1
  • 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 Methods
    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/JPG)

    GIF

    Graphics Interchange Format (GIF)

    SVG

    Scalable Vector Graphics (SVG)

    Remarks

    TdxDashboard/TdxDashboardControl components 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:

    Dashboard Control

    TdxCustomDashboardControl.ExportTo(TdxDashboardExportFormat,TStream)
    Exports dashboard content to a stream in any supported format.
    TdxCustomDashboardControl.ExportTo(TdxDashboardExportFormat,TStream,string)
    Exports dashboard content to a stream in any supported format. Returns the file name that corresponds to the dashboard layout name and the target export format.
    TdxCustomDashboardControl.ExportTo(TdxDashboardExportFormat,string)
    Exports dashboard content to a stream in any supported format.

    Dashboard Container

    TdxDashboard.ExportTo(TdxDashboardExportFormat,TStream)
    Exports dashboard content to a stream in any supported format.
    TdxDashboard.ExportTo(TdxDashboardExportFormat,TStream,string)
    Exports dashboard content to a stream in any supported format. Returns the file name that corresponds to the dashboard layout name and the target export format.
    TdxDashboard.ExportTo(TdxDashboardExportFormat,string)
    Exports dashboard content to a stream in any supported format.
    See Also