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

DataViewBase.TopRowIndex Property

Gets or sets the index of the top visible row.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.2.Core.dll

Declaration

[Browsable(false)]
public int TopRowIndex { get; set; }

Property Value

Type Description
Int32

An integer value that specifies the index of the top visible row.

Remarks

Use the TopRowIndex property to scroll the view and display the specified row at the top of the view in code. Setting the TopRowIndex property to a negative value automatically sets the TopRowIndex property to 0. Setting the TopRowIndex property to a value greater than the maximum allowed top row index automatically sets the TopRowIndex property to the maximum allowed top row index.

To learn more, see Identifying Rows and Cards and Focus and Navigation.

Note

In master-detail mode, the TopRowIndex property returns the index calculated against both master and detail rows.

See Also