Determines whether a column is fixed to the left of the grid when it is scrolled horizontally.

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

Syntax

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

Remarks

The default value of this property is false. When this property is set to true for a column, all columns to the left are also fixed. This property is usually used with the ScrollSettings property.

This property is ignored under group mode.

If child column of some C1Band is fixed then the top and right-most column of the root C1Band contained current column will be fixed.

See Also