Skip to main content

ExcelExportOptions.Format Property

OBSOLETE

This property is obsolete now. Use the Format property instead. To learn more, see the following KB article: https://www.devexpress.com/Support/Center/Question/Details/T488406

Gets or sets the Excel format used for exporting.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

[DefaultValue(ExcelFormat.Xlsx)]
[Obsolete("This property is obsolete now. Use the DashboardExcelExportOptions.Format property instead. To learn more, see the following KB article: https://www.devexpress.com/Support/Center/Question/Details/T488406")]
public ExcelFormat Format { get; set; }

Property Value

Type Default Description
ExcelFormat Xlsx

ExcelFormat enumeration values that specify the Excel format used for exporting.

Available values:

Name Description
Csv

A comma-separated values (CSV) file format.

Xls

The Excel 97 - Excel 2003 (XLS) file format.

Xlsx

The Office Excel 2007 XML-based (XLSX) file format.

See Also