Gets or sets the height of column footers.
[Visual Basic]
Public Property ColumnFooterHeight As Integer
[C#]
public int ColumnFooterHeight {get;set;}
[Delphi]
public property ColumnFooterHeight: Int32 read get_ColumnFooterHeight write set_ColumnFooterHeight;
Example
The following code sets the column footers in the second split twice as high:
Me.C1TrueDBGrid1.ColumnFooters = True
Me.C1TrueDBGrid1.Splits(1).ColumnFooterHeight = Me.C1TrueDBGrid1.Splits(1).ColumnFooterHeight * 2
· C#
this.c1TrueDBGrid1.ColumnFooters = true;
this.c1TrueDBGrid1.Splits[1].ColumnFooterHeight = this.c1TrueDBGrid1.Splits[1].ColumnFooterHeight * 2;
· Delphi
Self.C1TrueDBGrid1.ColumnFooters := True;
Self.C1TrueDBGrid1.Splits[1].ColumnFooterHeight := Self.C1TrueDBGrid1.Splits[1].ColumnFooterHeight * 2;
See Also
Split Class | Split Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |