Gets or sets the Style object that controls the appearance of an even-numbered row when using AlternatingRows.
[Visual Basic]
Public Property EvenRowStyle As C1.Win.C1TrueDBGrid.Style
[C#]
public C1.Win.C1TrueDBGrid.Style EvenRowStyle {get;set;}
[Delphi]
public property EvenRowStyle: C1.Win.C1TrueDBGrid.Style read get_EvenRowStyle write set_EvenRowStyle;
Example
The following code sets the BackColor property of the EvenRowStyle to Linen:
Me.C1TrueDBDropdown1.AlternatingRows = True
Me.C1TrueDBDropdown1.EvenRowStyle.BackColor = Color.Linen
· C#
this.c1TrueDBDropdown1.AlternatingRows = true;
this.c1TrueDBDropdown1.EvenRowStyle.BackColor = Color.Linen;
· Delphi
Self.C1TrueDBDropdown1.AlternatingRows := True;
Self.C1TrueDBDropdown1.EvenRowStyle.BackColor := Color.Linen;
See Also
C1TrueDBDropdown Class | C1TrueDBDropdown Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |