MultiEditorRowPropertiesCollection.Item[String] Property
Gets a row item from the MultiEditorRow.PropertiesCollection by the bound field name.
Namespace: DevExpress.XtraVerticalGrid.Rows
Assembly: DevExpress.XtraVerticalGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
#Declaration
public MultiEditorRowProperties this[string fFieldName] { get; }
#Parameters
Name | Type | Description |
---|---|---|
f |
String | A string value specifying the name of the data field to which a row item is bound. |
#Property Value
Type | Description |
---|---|
Multi |
A Multi |
#Remarks
Use this property to obtain a specific row item representing an individual row properties object for a multi-editor row from the row’s MultiEditorRow.PropertiesCollection. A row item is specified by the name of the data field to which it is bound.
This property gives you the ability to access a specific row item in the MultiEditorRow.PropertiesCollection by using the following syntax:
someMultiEditorRow.PropertiesCollection[fieldName].
When searching the parameter value is compared with the RowProperties.FieldName property of row item objects from the collection. If no matches are found, null (Nothing in Visual Basic) is returned.
If you need to access a row item specified by its index in the row item collection, you should use the overloaded variant of the MultiEditorRowPropertiesCollection.Item property, which accepts the item index as a parameter.