FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / CellRange Structure / StyleNew Property
Example

In This Topic
    StyleNew Property (CellRange)
    In This Topic
    Gets or sets the style used to display every cell in the range, creating a new style if necessary.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property StyleNew As CellStyle
    public CellStyle StyleNew {get;}
    Remarks
    This property never returns null. If the range does not have a style assigned to it, a new style will be created automatically.
    Example
    The code below creates a CellRange structure and uses it to apply a custom style to the entire range.
    // create a cell range
    CellRange rg = _flex.GetCellRange(1, 1, 5, 5);
                
    // make sure range is red
    rg.StyleNew.BackColor = Color.Red;
    See Also