The EvenRow property specifies the appearance settings of data cells within even nodes. If this property is not specified, the appearance of data cells within even nodes is specified by the Row property.
To specify the appearance of odd nodes, use the OddRow property.
For more information on appearances, see the Appearances topic.

Example
The following code shows how to use the EvenRow (see EvenRow) and OddRow (see OddRow) properties to customize the appearance of even and odd rows in the TreeList.
Note that these properties are in effect if the EnableAppearanceEvenRow (see TreeListOptionsView.EnableAppearanceEvenRow) and EnableAppearanceOddRow (see TreeListOptionsView.EnableAppearanceOddRow) options are enabled.

C# |
treeList1.Appearance.EvenRow.BackColor = Color.PaleVioletRed;
treeList1.Appearance.OddRow.BackColor = Color.LightPink;
treeList1.OptionsView.EnableAppearanceEvenRow = true;
treeList1.OptionsView.EnableAppearanceOddRow = true;
|
VB |
TreeList1.Appearance.EvenRow.BackColor = Color.PaleVioletRed
TreeList1.Appearance.OddRow.BackColor = Color.LightPink
TreeList1.OptionsView.EnableAppearanceEvenRow = True
TreeList1.OptionsView.EnableAppearanceOddRow = True
|