ExcelExportOptions.Format Property
OBSOLETE
This property is obsolete now. Use the Format property instead. To learn more, see the following breaking change: https://supportcenter.devexpress.com/ticket/details/bc4046/
Gets or sets the Excel format used for exporting.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.1.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 breaking change: https://supportcenter.devexpress.com/ticket/details/bc4046/")]
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