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

VGridRows.FirstVisible Property

Gets the first row from the collection whose BaseRow.Visible property is true.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

public BaseRow FirstVisible { get; }

Property Value

Type Description
BaseRow

A BaseRow object representing the first row in the collection whose BaseRow.Visible property is true.

Remarks

You can use the FirstVisible property to obtain the first row from the rows collection whose BaseRow.Visible property is set to true.

The search starts from the beginning of the collection and the first occurence of the row with the BaseRow.Visible property set to true is returned. If there is no such row, this property contains a null reference (Nothing in Visual Basic).

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FirstVisible property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also