By default, the export engine uses the current culture to format numeric and date-time cell values. To use a specific culture, set the DocumentCulture property.
The following image shows how to specify the French culture for the export document.
C# |
string path = "grd-export.xlsx";
XlsxExportOptionsEx op = new XlsxExportOptionsEx() { DocumentCulture = new CultureInfo("fr-FR") };
gridControl1.ExportToXlsx(path, op);
|