Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TableView.FixRow(Int32, FixedRowPosition) Method

Fixes a row at the top or at the bottom of the grid.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public void FixRow(
    int rowHandle,
    FixedRowPosition fixedRowPosition
)

#Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the row’s handle.

fixedRowPosition FixedRowPosition

A FixedRowPosition enumeration value that specifies whether the row is fixed at the top or the bottom of the grid. FixedRowPosition.None unfixes a row.

#Remarks

Use the FixRow method to fix a row at the top or at the bottom of the grid. Set the method’s fixRowPosition parameter to FixedRowPosition.None to unfix a row.

See Also