diff --git a/api-reference/50 Common/Object Structures/ExcelExportDataGridProps/customizeCell.md b/api-reference/50 Common/Object Structures/ExcelExportDataGridProps/customizeCell.md index e7f297ed64..9ae324eb17 100644 --- a/api-reference/50 Common/Object Structures/ExcelExportDataGridProps/customizeCell.md +++ b/api-reference/50 Common/Object Structures/ExcelExportDataGridProps/customizeCell.md @@ -4,28 +4,30 @@ type: function(options) --- --- ##### shortDescription -Customizes an Excel cell after creation. +Customizes Excel cells after creation. ##### param(options): Object -An object passed to this callback function. +**customizeCell** options. ##### field(options.excelCell): Object -An DevExtreme ExcelJS object that describes an Excel cell. Use the object's properties to customize the cell. For information on these properties, refer to the following DevExtreme ExcelJS documentation sections: - -- value -- alignment -- border -- fill -- richText -- font -- numFmt +An Excel cell. ##### field(options.gridCell): ExcelDataGridCell A DataGrid cell. --- -The following code illustrates how to customize font and alignment in cells whose [rowType](/api-reference/10%20UI%20Components/dxDataGrid/6%20Row/rowType.md '/Documentation/ApiReference/UI_Components/dxDataGrid/Row/#rowType') equals *"data"*: +DevExtreme ExcelJS allows you to customize the following Excel cell properties: + +- [value](https://github.com/DevExpress/devextreme-exceljs-fork#value-types) +- [alignment](https://github.com/DevExpress/devextreme-exceljs-fork#alignment) +- [border](https://github.com/DevExpress/devextreme-exceljs-fork#borders) +- [fill](https://github.com/DevExpress/devextreme-exceljs-fork#fills) +- [richText](https://github.com/DevExpress/devextreme-exceljs-fork#rich-text) +- [font](https://github.com/DevExpress/devextreme-exceljs-fork#fonts) +- [numFmt](https://github.com/DevExpress/devextreme-exceljs-fork#number-formats) + +The following code snippet checks DataGrid cell [rowType](/Documentation/ApiReference/UI_Components/dxDataGrid/Row/#rowType) values to customize Excel cells in data rows: --- ##### jQuery @@ -234,7 +236,43 @@ The following code illustrates how to customize