BaseRow.GetRowProperties(String) Method
In This Article
Returns row properties by the specified field name.
Namespace: DevExpress.XtraVerticalGrid.Rows
Assembly: DevExpress.XtraVerticalGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
#Declaration
public RowProperties GetRowProperties(
string fieldName
)
#Parameters
Name | Type | Description |
---|---|---|
field |
String | A string value specifying the required field name in the underlying data source. |
#Returns
Type | Description |
---|---|
Row |
A Row |
#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