Skip to main content
.NET 6.0+

EnumDescriptor.Captions Property

Specifies the display captions associated with the values of the enumeration represented by the EnumDescriptor.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ICollection<string> Captions { get; }

Property Value

Type Description
ICollection<String>

An ICollection<String> object representing the display captions associated with the values of the enumeration represented by the EnumDescriptor.

Remarks

Generally there’s no need to use this method, unless you are implementing a custom Property Editor that displays captions of an enumeration. In this instance, you may use this property as the data source of the display captions.

See Also