DataViewBase.TopRowIndex Property
In This Article
Gets or sets the index of the top visible row.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll
#Declaration
[Browsable(false)]
[CloneDetailMode(CloneDetailMode.Skip)]
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 Focus and Navigation.
See Also