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

RowProperties.Row Property

Gets an object representing the row to which a row belongs.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[Browsable(false)]
public BaseRow Row { get; }

Property Value

Type Description
BaseRow

A BaseRow descendant object containing a row item.

Remarks

Simple rows (whose type is CategoryRow or EditorRow) contain a single row item representing type specific row settings. This item can be accessed via the row’s BaseRow.Properties property.

Complex rows (of the MultiEditorRow type) hold collections of row items stored in their MultiEditorRow.PropertiesCollection property.

In all cases, row items represented by RowProperties objects refer to the row to which they belong via the Row property. You can use the methods and properties of the obtained row to process it as your application needs dictate.

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