ComponentOne True DBGrid for .NET (2.0) Search HelpCentral 

Split.FooterStyle Property

Gets or sets the Style object that controls the appearance of column footers.

[Visual Basic]

Public Property FooterStyle As C1.Win.C1TrueDBGrid.Style

[C#]

public C1.Win.C1TrueDBGrid.Style FooterStyle {get;set;}

[Delphi]

public property FooterStyle: C1.Win.C1TrueDBGrid.Style read get_FooterStyle write set_FooterStyle;

Example

The following code sets the background of the footer in the second split to Honeydew:

·      Visual Basic

       Me.C1TrueDBGrid1.ColumnFooters = True

       Me.C1TrueDBGrid1.Splits(1).FooterStyle.BackColor = Color.Honeydew

·      C#

       this.c1TrueDBGrid1.ColumnFooters = true;

       this.c1TrueDBGrid1.Splits[1].FooterStyle.BackColor = Color.Honeydew;

·      Delphi

       Self.C1TrueDBGrid1.ColumnFooters := True;

       Self.C1TrueDBGrid1.Splits[1].FooterStyle.BackColor := Color.Honeydew;

See Also

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


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