Skip to main content

VGridControlBase.GetNextVisible(BaseRow) Method

Returns the visible row next to the specified one.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

Declaration

public BaseRow GetNextVisible(
    BaseRow visibleRow
)

Parameters

Name Type Description
visibleRow BaseRow

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

Returns

Type Description
BaseRow

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

Remarks

The GetNextVisible method gets the visible row next to the specified one. The GetNextVisible 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 last visible row.
See Also