Allows derived classes to finish customizing cells after they have been created and all styles have been applied.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

C#
public virtual void ApplyCellStyles(
	C1FlexGrid grid,
	CellType cellType,
	CellRange rng,
	Border bdr
)
Visual Basic
Public Overridable Sub ApplyCellStyles ( _
	grid As C1FlexGrid, _
	cellType As CellType, _
	rng As CellRange, _
	bdr As Border _
)

Parameters

grid
Type: C1.Silverlight.FlexGrid..::..C1FlexGrid
C1FlexGrid that owns the cell.
cellType
Type: C1.Silverlight.FlexGrid..::..CellType
CellType that specifies the type of cell to be created.
rng
Type: C1.Silverlight.FlexGrid..::..CellRange
CellRange that specifies the row and column represented by the cell.
bdr
Type: System.Windows.Controls..::..Border
Border element that represents the cell.

See Also