Gets or sets a value indicating whether a row is fixed to the top of the grid when it is scrolled vertically.

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

Syntax

C#
[DefaultValueAttribute(false)]
public bool Fixed { get; set; }
Visual Basic
<DefaultValueAttribute(False)> _
Public Property Fixed As Boolean
	Get
	Set

Field Value

The default value of this property is False.

Remarks

For a scrollable grid, the C1GridViewRowType enumeration's Header constant will have a default value of True. This property can be set in either theRowCreated or RowDataBound event.

When the grid is in grouping mode, the entire group that contains a fixed row will be moved to the top of the grid.

See Also