码迷,mamicode.com
首页 > 其他好文 > 详细

取类型数据

时间:2018-05-04 14:05:17      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:info   system   click   name   ring   form   for   type   day   

System.TypInfo

 

procedure TForm1.Button5Click(Sender: TObject);
var
ti: PTypeInfo;
td: PTypeData;
i: Integer;
s: string;
begin
ti := TypeInfo(TWeekDays);
td := GetTypeData(ti);
for i := td^.MinValue to td^.MaxValue do
s := s + (GetEnumName(ti, i));
ShowMessage(s);
end;

取类型数据

标签:info   system   click   name   ring   form   for   type   day   

原文地址:https://www.cnblogs.com/FKdelphi/p/8989730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!