BaseRow.GetRowProperties(String) Method
Returns row properties by the specified field name.
Namespace: DevExpress.XtraVerticalGrid.Rows
Assembly: DevExpress.XtraVerticalGrid.v26.1.dll
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| fieldName | String | A string value specifying the required field name in the underlying data source. |
Returns
| Type | Description |
|---|---|
| RowProperties | A RowProperties object corresponding to the row displaying values from the specified fieldName in the data source. |
Remarks
The GetRowProperties method returns:
- for an EditorRow - the RowProperties object of the EditorRow.Properties property if its RowProperties.FieldName property value matches the specified fieldName; otherwise, null/Nothing;
- for a MultiEditorRow - the MultiEditorRowProperties object from the MultiEditorRow.PropertiesCollection collection whose RowProperties.FieldName property value matches the specified fieldName; otherwise, null/Nothing;
- null/Nothing for a CategoryRow.
See Also