Delphi Programming
This page is intended as a supplement to the official documentation on Delphi programming. CodeGear is in the process of putting the Delphi documentation on the Web. Once they have done so, this page will link to the relevant page in the official documentation.
Stub
This article is a stub.
Please help enhance the Delphi Programming Wiki by expanding it.
Info
see the VCL Documentation Guidelines for an overview on doc pages

Unit[]

Description[]

GetEnumValue is a function to get the ordinal value of an enumeration value.

The first parameter (TypeInfo: PTypeInfo) is a pointer to the typeinfo of the enumeration type.

The second parameter (Name: string) is the enumeration value name in the form of a string.

The result is the ordinal value of the enumeration value.

Technical Comments[]

Be aware that Typeinfo will be lost when the enumeration is given different ordinal values. With the next enumeration example it's not possible to use GetEnumValue and will result in 'E2134 Type 'TTestType' has no type info'

type
  TTestType = (ttTest1 = 2, ttTest2 = 4, ttTestUnknown = 6);

Examples[]

type
  TTestType = (ttTest1 {0}, ttTest2 {1}, ttTestUnknown {2});
...
ShowMessage(IntToStr(GetEnumValue(TypeInfo(TTestType), 'ttTestUnknown'))); //will show 2

See Also[]

User Comments/Tips[]

(Please leave your name with your comment.)