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

VGridControlBase.GetPrevVisible(BaseRow) Method

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

public BaseRow GetPrevVisible(
    BaseRow visibleRow
)

#Parameters

Name Type Description
visibleRow BaseRow

A BaseRow descendant that represents the visible row whose previous visible row is returned.

#Returns

Type Description
BaseRow

A BaseRow descendant that represents the visible row previous to the specified one.

#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