Format cell with Style property
The GridViewCellInfo.Style property gives direct access to the cell’s visual properties. It makes it possible to set styles to cells in runtime without using events like CellFormatting or the ConditionalFormattingObject.
This approach lets you customize visual properties which are defined by the theme. All changes set this way will have a greater priority than the theme.
The first thing to do for using the cell’s Style is to define what custom visual properties will use this cell. You can define that the cell will:
CustomizeFill
CustomizeBorder
Using the Style property allows you to define cell’s style properties:
Fill
Border
Font
ForeColor
The example below shows how to customize the Font and BackColor of a cell.
Here is how to call this method of a certain cell:
Figure 1: Format using the Style property.
Before assigning a certain value to the Style of the data cell, you can store the initial values of the properties. Thus, you can reset the style to the initial values if the style is not needed anymore.