How can I retrieve the string name of some enumera |
|
axsoft
版主 ![]() ![]() ![]() ![]() ![]() ![]() 發表:681 回覆:1056 積分:969 註冊:2002-03-13 發送簡訊給我 |
How can I retrieve the string name of some enumerate value? 資料來源: www.delphi3000.com 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;網路志工聯盟----Visita網站http://www.vista.org.tw ---[ 發問前請先找找舊文章 ]--- |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |