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

VGridControlBase.Rows Property

Gets a collection of root rows.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

[Browsable(false)]
[XtraSerializableProperty(true, true, true)]
public VGridRows Rows { get; }

Property Value

Type Description
VGridRows

A VGridRows object that represents the collection of root rows.

Remarks

Rows in a vertical grid control can be arranged in a tree-like structure. This implies that each row can have a number of child rows. Each child can have its own child rows collection, etc. A collection of children can be accessed via the row’s BaseRow.ChildRows property.

For more information on rows, see Rows and Tree Traversal.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Rows 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