Skip to main content

RowProperties.Row Property

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

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

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.

See Also