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 Class

Represents settings common to all row items.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

public class RowProperties :
    IDisposable,
    IDataColumnInfo,
    IControlFilterColumn,
    IUnboundColumnTypeProvider,
    IAccessiblePropertiesProvider

#Remarks

The RowProperties class represents settings which are common to all row items, it is the base class for classes that represent row item settings for the category and multi editor rows.

Settings that are common to items of different row types are listed below:

  • The RowProperties.Caption property specifies the caption displayed within the row item’s header.
  • The RowProperties.ImageOptions property gives access to options that allow you to specify the image displayed within the row item’s header.
  • The RowProperties.RowEdit property allows you to specify the editor used to display and edit the row item values.
  • The RowProperties.FieldName property specifies the name of a bound field. This property is not used when working in the Unbound Mode since the grid control is not bound to any data source in this case.
  • The RowProperties.Value property represents the row item’s value. This property is only used when working in the Unbound Mode. Otherwise, cells are filled with values from the bound data field or are left blank if the bound field is not specified.

You have no need to create and initialize the RowProperties objects manually, since they are created automatically when an editor row is instantiated.

The RowProperties object can be accessed using the row’s BaseRow.Properties property.

See Also