windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-baserow.md
Gets an object containing type specific row settings.
Namespace : DevExpress.XtraVerticalGrid.Rows
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[DXCategory("Properties")]
public virtual RowProperties Properties { get; }
<DXCategory("Properties")>
Public Overridable ReadOnly Property Properties As RowProperties
| Type | Description |
|---|---|
| RowProperties |
An instance of the RowProperties class or its descendant representing type specific row properties.
|
This property provides access to the object containing specific row settings. Type specific row properties are incorporated in an object, which is an instance of the RowProperties class or some of its descendants.
Use the Properties property to gain access to a specific row’s RowProperties object. Using this property is based on the row type.
In order to access a RowProperties derived object specified by its collection index, you can use the BaseRow.GetRowProperties method. The BaseRow.RowPropertiesCount property obtains the number of such objects in the collection.
As implemented in the BaseRow class, the Properties property returns null ( Nothing in Visual Basic). Descendant classes (such as EditorRow, MultiEditorRow) override this property to return an object of the required type.
See Also