Gets or sets a value indicating whether to display the column divider in the footer area.
[Visual Basic]
Public Property FooterDivider As Boolean
[C#]
public bool FooterDivider {get;set;}
[Delphi]
public property FooterDivider: Boolean read get_FooterDivider write set_FooterDivider;
Remarks
If True (the default), the right edge of the column's footer is drawn with a vertical dividing line.
If False, no dividing line is drawn in the column's header area.
Example
The following code uses the FooterDivider property to exclude the dividing line in the column's footer, which enables you to visually group related columns:
Me.C1TrueDBGrid1.Columns(0).FooterText = "Composers"
Me.C1TrueDBGrid1.Splits(0).DisplayColumns(0).FooterDivider = False
· C#
this.c1TrueDBGrid1.Columns[0].FooterText = "Composers";
this.c1TrueDBGrid1.Splits[0].DisplayColumns[0].FooterDivider = false;
· Delphi
Self.C1TrueDBGrid1.Columns[0].FooterText := 'Composers';
Self.C1TrueDBGrid1.Splits[0].DisplayColumns[0].FooterDivider := False;
See Also
C1DisplayColumn Class | C1DisplayColumn Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |