Skip to main content
A newer version of this page is available. .
Tab

VerticalGridRow.Fixed Property

Gets or sets whether the row is fixed on the ASPxVerticalGrid’s top edge.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(false)]
public bool Fixed { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if a row is fixed; otherwise, false.

Remarks

If the total record height exceeds the ASPxVerticalGrid’s height and the vertical scrollbar is displayed, end-users can scroll the grid’s contents row by row. When using vertical scrolling, you can freeze individual rows within the grid, allowing your end-users to scroll through the other rows. To do this, set the row’s Fixed property to true. A row can be fixed only on the grid’s top edge.

To enable vertical scrolling, use the ASPxGridSettings.VerticalScrollBarMode property.

ASPxVerticalGrid-FixedRows

See Also