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.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
#Declaration
[Browsable(false)]
public override RowProperties Properties { get; }
#Property Value
Type | Description |
---|---|
Row |
A Row |
#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.