Search code examples
axaptadynamics-ax-2009x++

Enum inheritance


Is there any possibility to create an enum A which inherits properties of enum B and additionally provides possibility to extend elements?

Example:

Enum A
- one
- two
- three

Enum B:A
- four

Solution

  • No, it is not possible. Base Enums do not support inheritance.