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

VGridControlBase.GetPrevVisible(BaseRow) Method

Returns the visible row previous to the specified one.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

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