aspnet-devexpress-dot-web-dot-verticalgridrow.md
Gets or sets whether the row is fixed on the ASPxVerticalGrid’s top edge.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool Fixed { get; set; }
<DefaultValue(False)>
Public Property Fixed As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, if a row is fixed; otherwise, false.
|
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.
See Also