ComponentOne True DBGrid for .NET (2.0) Search HelpCentral 

C1TrueDBGrid.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 BackColor of the footer to Khaki:

·      Visual Basic

       Me.C1TrueDBGrid1.ColumnFooters = True

       Me.C1TrueDBGrid1.FooterStyle.BackColor = Color.Khaki

·      C#

       this.c1TrueDBGrid1.ColumnFooters = true;

       this.c1TrueDBGrid1.FooterStyle.BackColor = Color.Khaki;

·      Delphi

       Self.C1TrueDBGrid1.ColumnFooters := True;

       Self.C1TrueDBGrid1.FooterStyle.BackColor := Color.Khaki;

See Also

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


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