ComponentOne True DBGrid for .NET (2.0) Search HelpCentral 

C1TrueDBGrid.OddRowStyle Property

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:

·      Visual Basic

       Me.C1TrueDBGrid1.AlternatingRows = True

       Me.C1TrueDBGrid1.OddRowStyle.BackColor = Color.Lavender

·      C#

       this.c1TrueDBGrid1.AlternatingRows = true;

       this.c1TrueDBGrid1.OddRowStyle.BackColor = Color.Lavender;

·      Delphi

       Self.C1TrueDBGrid1.AlternatingRows := True;

       Self.C1TrueDBGrid1.OddRowStyle.BackColor := Color.Lavender;

See Also

C1TrueDBGrid Class | C1TrueDBGrid Members | C1.Win.C1TrueDBGrid Namespace


Send comments about this topic to ComponentOne.
Copyright © ComponentOne LLC. All rights reserved.