TdxReportUIExportFormat Enum
Enumerates report formats for export operations available in the UI.
Declaration
TdxReportUIExportFormat = (
CSV,
DOCX,
HTML,
Image,
MHT,
PDF,
RTF,
Text,
XLS,
XLSX
);
Members
| Name | Description | Format-Specific Export Methods |
|---|---|---|
CSV
|
Comma-Separated Values (CSV) |
|
DOCX
|
Office Open XML Document (DOCX) |
|
HTML
|
Hypertext Markup Language (HTML) |
|
Image
|
Image Export Format The actual image format depends on Image Export Options available in the Report Viewer dialog (the default image export format is PNG). |
|
MHT
|
MIME HTML Document Format (MHT/MHTML) |
|
PDF
|
Portable Document Format (PDF) |
|
RTF
|
Rich Text Format (RTF) |
|
Text
|
Plain text format (TXT) |
|
XLS
|
Microsoft Excel® Binary Format (XLS) |
|
XLSX
|
Office OpenXML Spreadsheet Format (XLSX) |
Remarks
The Report Viewer dialog allows users to export generated reports to any supported image or document format.

Users can configure each available export format in the Export Options pane.
Available Options
You can use the following properties to specify export formats available to users:
- TdxReport.ExportFormats
- Specifies export formats available in the Report Viewer dialog.
- TdxCustomReportControl.ExportFormats
- Specifies export formats available in the TdxReportControl and Report Viewer UI.
Note
TdxReportUIExportFormat 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 TdxReportUIExportFormat.PDF (in Delphi) or TdxReportUIExportFormat::PDF (in C++Builder) to refer to the PDF value in code.
Direct TdxReportUIExportFormat Type References
The following public APIs reference the TdxReportUIExportFormat type:
- AllReportUIExportFormats
- A set of flags that corresponds to all export data formats available for report export using the built-in UI.
- TdxReportUIExportFormats
- A set of flags that correspond to report data export formats.