Back to Devexpress

MultiEditorRow.Properties Property

windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-multieditorrow-c65a20bb.md

latest3.6 KB
Original Source

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.v25.2.dll

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

Declaration

csharp
[Browsable(false)]
public override RowProperties Properties { get; }
vb
<Browsable(False)>
Public Overrides ReadOnly Property Properties As RowProperties

Property Value

TypeDescription
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

RowProperties

MultiEditorRowProperties

RowPropertiesCount

GetRowProperties

Rows

MultiEditorRow Class

MultiEditorRow Members

DevExpress.XtraVerticalGrid.Rows Namespace