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

MultiEditorRow.Properties Property

Gets an object containing settings specific to the first item in a multi-editor row.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[Browsable(false)]
public override RowProperties Properties { get; }

Property Value

Type Description
RowProperties

A RowProperties descendant representing the type specific properties of the first item within a multi-editor row. null (Nothing in Visual Basic) if the multi-editor row’s MultiEditorRow.PropertiesCollection collection is empty.

Remarks

This property provides access to an object containing type specific row properties. For a multi-editor row, such settings are incorporated in a collection.

Multi-editor rows are complex because they can maintain a collection of MultiEditorRowProperties objects and therefore consist of multiple items. Each MultiEditorRowProperties object in the collection represents a particular row item and contains the settings specific to it. This type of collection is enabled for access via the row’s MultiEditorRow.PropertiesCollection property. The Properties property provides access to the collection’s first (zero-indexed) object representing the first row item. The number of MultiEditorRowProperties objects in a collection can be obtained via the BaseRow.RowPropertiesCount property.

Individual row items can be accessed using indexed notation via the BaseRow.GetRowProperties method.

See Also