Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RowProperties.Row Property

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

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.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