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

ImageComboBoxItemCollection.AddEnum<TEnum>(Converter<TEnum, String>) Method

Adds new items to the collection that will represent elements of the specified enumeration. The display captions of the items are generated by the specified converter.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public void AddEnum<TEnum>(
    Converter<TEnum, string> displayTextConverter
)

Parameters

Name Type Description
displayTextConverter Converter<TEnum, String>

A System.Converter delegate that will generate item display captions.

Type Parameters

Name
TEnum

Remarks

This method fetches elements from the specified enumeration and creates new items within the collection that will represent these elements. An item’s value and description are set so as to identify the corresponding element. So, when a specific item is selected in the ImageComboBoxEdit control, the editor’s edit value will be set to the corresponding enumeration element.

Item display captions (descriptions) are generated by the specified converter.

See Also