ComponentOne True DBGrid for WinForms
How to Use Styles / Working with Style Properties / Anonymous Style Inheritance / Example 8 of 10: Changing Only the Data Cells in the First Column of the First Split
In This Topic
    Example 8 of 10: Changing Only the Data Cells in the First Column of the First Split
    In This Topic

    In this example, only the data cells of the first column of the first split are affected. This is because the column headers and column footers inherit their background colors from the built-in styles Heading and Footing, respectively.


    The following code changes the data cells in only the first column of the first split:

    To write code in Visual Basic

    Visual Basic
    Copy Code
    Me.C1TrueDBGrid1.Splits(0).DisplayColumns(0).Style.BackColor = System.Drawing.Color.Lavender
    

    To write code in C#

    C#
    Copy Code
    this.c1TrueDBGrid1.Splits[0].DisplayColumnsp[0].Style.BackColor = System.Drawing.Color.Lavender;
    
    See Also