Scalabium Software

SMReport Autogenerated
Knowledge for your independence'.
Home Delphi and C++Builder tips


#54: How can I get a name of enumerated value?

For example, if you have the some enum type

TyourEnumType = (One, Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten)

and you want in run-time to get a string with same value for each of them (for example, fill the combobox items with enum values), then you can use the next procedure:

uses TypInfo;

var i: Integer;
begin
  for i := Ord(Low(TyourEnumType)) to Ord(High(TyourEnumType)) do
    Combobox1.Items.Add(GetEnumName(TypeInfo(TyourEnumType), i));
end;


Published: December 21, 1999

See also
 
Metafile Convert
ABA Spreadsheet Convert
dBase Viewer
MAPIMail
Paradox to Text converter
Clarion to Text converter
ABA Document Convert
DBISAM Viewer
ExcelFile Viewer
SMDBGrid
 
 


Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2023, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMReport Autogenerated