Skip to main content
A newer version of this page is available. .

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.v18.2.dll

Declaration

public MultiEditorRowProperties AddProperties(
    string fFieldName
)

Parameters

Name Type Description
fFieldName 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