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

ImageComboBoxItemCollection.AddEnum<TEnum>() Method

Adds new items to the collection that will represent elements of the specified enumeration.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public void AddEnum<TEnum>()

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AddEnum<TEnum>() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also