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

MultiEditorRowPropertiesCollection.AddProperties(String) Method

Creates a new MultiEditorRowProperties object which is bound to a specific data field and appends it to the collection.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

public MultiEditorRowProperties AddProperties(
    string fieldName
)

#Parameters

Name Type Description
fieldName String

A String value which specifies the name of the data field to which the newly created row item should be bound.

#Returns

Type Description
MultiEditorRowProperties

A MultiEditorRowProperties object which represents the new row item.

#Remarks

To add an array of existing row items to the collection, use the MultiEditorRowPropertiesCollection.AddRange method. To remove a row item from the collection, use the MultiEditorRowPropertiesCollection.Remove or MultiEditorRowPropertiesCollection.RemoveAt methods. You can also call the MultiEditorRowPropertiesCollection.Clear method to remove all row items from the collection.

See Also