VGridControlBase.GetPrevVisible(BaseRow) Method
In This Article
Returns the visible row previous to the specified one.
Namespace: DevExpress.XtraVerticalGrid
Assembly: DevExpress.XtraVerticalGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
visible |
Base |
A Base |
#Returns
Type | Description |
---|---|
Base |
A Base |
#Remarks
The GetPrevVisible method gets the visible row previous to the specified one. This method returns the null reference in the instances listed below:
- the specified row is hidden (its BaseRow.Visible property is set to false);
- the specified row is the null reference or belongs to another vertical grid;
- the specified row is the first visible row.
See Also