Determines the style used to render group header and footer rows.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[JsonAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
[NotifyParentPropertyAttribute(true)]
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public virtual TableItemStyle FooterStyle { get; }
Visual Basic
<JsonAttribute(False)> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)> _
<NotifyParentPropertyAttribute(True)> _
<PersistenceModeAttribute(PersistenceMode.InnerProperty)> _
Public Overridable ReadOnly Property FooterStyle As TableItemStyle
	Get

Remarks

This style is based on the grid's FooterStyle property. If you are grouping on a single column, you probably won't have to change this style. If you are creating several levels of grouping, however, you will usually set the BackColor and ForeColor of each group header/footer to a different value to emphasize the structure of the data.

See Also