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