EnumDescriptor.GetImageInfo(Object) Method
Supplies metadata on the image associated with a particular value of the enumeration represented by the EnumDescriptor.
Namespace: DevExpress.ExpressApp.Utils
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Parameters
Name | Type | Description |
---|---|---|
value | Object | The enumeration value for which image metada will be retrieved. |
Returns
Type | Description |
---|---|
ImageInfo | An ImageInfo object supplying metadata on the image associated with the specified value of the enumeration represented by the EnumDescriptor. |
Remarks
The following code snippet illustrates use of the GetImageInfo property. The code retrieves images and display captions associated with MyEnum enumeration values.
//...
EnumDescriptor myDescriptor = new EnumDescriptor(typeof(MyEnum));
foreach(object enumValue in myDescriptor.Values) {
string caption = myDescriptor.GetCaption(enumValue);
var image = myDescriptor.GetImageInfo(enumValue).Image;
//process caption and image
}
See Also