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

MultiEditorRow.XtraRowTypeID Property

Gets a value indicating the multi-editor row‘s type.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

[Browsable(false)]
[XtraSerializableProperty]
public override int XtraRowTypeID { get; }

#Property Value

Type Description
Int32

An integer value indicating the type of a multi-editor row.

#Remarks

This property represents a numerical expression of the row type. Rows of each type have their XtraRowTypeID properties set to unique values. For multi-editor rows (whose type is MultiEditorRow), the XtraRowTypeID property returns 2. For more infomation on correspondence between row types and their numerical expressions, please refer to the BaseRow.XtraRowTypeID topic.

Use this property to programmatically determine the desired row’s type. This can be useful, for instance, when you need to cast the return value of a row’s BaseRow.Properties property to the appropriate type based on the processed row’s type.

See Also