FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / SetCellStyle Method / SetCellStyle(Int32,String,CellStyle) Method
Row index.
Column name.
The CellStyle to associate with the cell.

In This Topic
    SetCellStyle(Int32,String,CellStyle) Method
    In This Topic
    Assigns a custom CellStyle to a cell.
    Syntax
    'Declaration
     
    
    Public Overloads Sub SetCellStyle( _
       ByVal row As Integer, _
       ByVal colName As String, _
       ByVal newStyle As CellStyle _
    ) 
    public void SetCellStyle( 
       int row,
       string colName,
       CellStyle newStyle
    )

    Parameters

    row
    Row index.
    colName
    Column name.
    newStyle
    The CellStyle to associate with the cell.
    Remarks

    The C1FlexGridBase.SetCellStyle method is useful if you want to assign a new style to a single cell. You can also reset the cell style by setting it to null (Nothing, in VB).

    To apply a custom cell style to an entire row or column, set the row or column's RowCol.Style properties.

    To apply a custom style to a range cells, use a CellRange object. For example:

    CellRange rg = _flex.GetCellRange(3, 3, 10, 10); rg.Style = _flex.Styles["MyRangeStyle"];
    See Also