Delphi 遍历对象的属性

unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs,typinfo, Vcl.StdCtrls;

type
   TmyType = (my1, my2, my3);

type
  TForm1 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

TTest = class(TObject)
  public


   FName,FSex,FScholl:string;
   Fmyfloat:double;
   Fmyboolean:boolean;
   Fmymy:TmyType;
  published
     property Name :string read FName write FName;
     property Sex :string read FSex write FSex;
     property Scholl :string read FScholl write FScholl;
     property myfloat:double read Fmyfloat write Fmyfloat;
     property myboolean:boolean read Fmyboolean write Fmyboolean;
     property mymy:TmyType read Fmymy write Fmymy;
    end;

type
    TDot = class
    private // 专用
    public // 共享
        Fx: double;
        Fy: double;
    published // 发布
        property x: double read Fx write Fx;
        property y: double read Fy write Fy;
    end;
type
    TEntity = class
    private // 专用
    public // 共享
        FID: LongWord; // 实体编号      4
        fEType: byte;  // 实体类型      1

        fLaye: byte; // 实体图层      1
        fLineType: byte; // 实体线型      1
        fLineWidth: byte; // 实体线宽      1
        fPenColor: byte; // 实体画笔颜色  1

        fbrushColor: byte; // 实体填充颜色  1
        fbrushstyle: byte; // 实体填充样式  1

        fSelected: boolean; // 是否选定         1
        Fselectno: integer; // 选定控制点编号   1

    protected // 保护

    public // 共享

    published // 发布
        property ID: LongWord read FID write FID;
        property laye: byte read fLaye write fLaye;
        property Etype: byte read fEType write fEType;
        property linewidth: byte read fLineWidth write fLineWidth;
        property pencolor: byte read fPenColor write fPenColor;
        property linetype: byte read fLineType write fLineType;
        property brushColor: byte read fbrushColor write fbrushColor;
        property brushStyle: byte read fbrushstyle write fbrushstyle;
        property Selected: boolean read fSelected write fSelected;
        property Selectno: integer read Fselectno write Fselectno;
    end;

type
    TCADLine = class(TEntity)
    private // 专用
    public // 共享
        fdot0: TDot;
        fdot1: TDot;
    protected // 保护

    public // 共享
        constructor Create();
        destructor Destroy;

    published // 发布
        property dot0: TDot read fdot0 write fdot0;
        property dot1: TDot read fdot1 write fdot1;
    end;


var
  Form1: TForm1;

implementation

{$R *.dfm}


constructor TCADLine.Create();
begin
    inherited Create();
    ;
    fdot0 := TDot.Create;
    fdot1 := TDot.Create;

    fdot0.x := 21;
    fdot0.y := 22;
    fdot1.x := 34;
    fdot1.y := 35;

end;

destructor TCADLine.Destroy;
begin
    fdot0.Free;
    fdot1.Free;
    inherited Destroy;
end;


procedure TForm1.Button2Click(Sender: TObject);
var
 PropCount, I: SmallInt;
 PropList: PPropList;
 PropStr,sValues: string;

 PropCount1, j: SmallInt;
 PropList1: PPropList;
 PropStr1,sValues1: string;


 Tmytmp : TObject;
 AClass:TTest;
 myLine:TCADLine;

begin

  AClass:=TTest.Create;
  AClass.Name:='MyTest';
  AClass.Sex:='Male';
  AClass.Scholl:='Scholl';
  AClass.myfloat:=0.99;
  AClass.myboolean:=false;
  AClass.mymy:=my2;

  myLine:=TCADLine.Create;
  myLine.id:=6;
  myLine.LineWidth:=23;

  myLine.dot0.x:=23.5;
  myLine.dot0.y:=33.5;

 PropCount := GetTypeData(AClass.ClassInfo).PropCount;
 GetPropList(AClass.ClassInfo, PropList);
 for I := 0 to PropCount - 1 do
 begin
   case PropList[I]^.PropType^.Kind of
     tkClass      : PropStr := '[Class] ';
     tkMethod     : PropStr := '[Method]';
     tkSet        : PropStr := '[Set]   ';
     tkEnumeration: PropStr := '[Enum]  ';
   else
     PropStr := '[Field] ';
   end;

   PropStr := PropStr + PropList[I]^.Name;
   PropStr := PropStr + ' : ' + PropList[I]^.PropType^.Name;

   sValues:=GetPropValue(AClass,PropList[I].Name,True);
   ShowMessage(PropStr+' : '+sValues);

 end;

 PropCount := GetTypeData(myline.ClassInfo).PropCount;
 GetPropList(myline.ClassInfo, PropList);

 for I := 0 to PropCount - 1 do
 begin
   case PropList[I]^.PropType^.Kind of
     tkClass      : PropStr := '[Class] ';      //对象
     tkMethod     : PropStr := '[Method]';      //方法
     tkSet        : PropStr := '[Set]   ';      //集合
     tkEnumeration: PropStr := '[Enum]  ';      //枚举
   else
     PropStr := '[Field] ';
   end;

   PropStr := PropStr + PropList[I]^.Name;
   PropStr := PropStr + ' : ' + PropList[I]^.PropType^.Name;


   if PropList[I]^.PropType^.Kind=tkClass then
   begin
     Tmytmp:=getobjectprop(myline,PropList[I],tdot);
     PropCount1 := GetTypeData(Tmytmp.ClassInfo).PropCount;
     GetPropList(Tmytmp.ClassInfo, PropList1);

     for j := 0 to PropCount1 - 1 do
     begin
      case PropList[j]^.PropType^.Kind of
        tkClass      : PropStr := '[Class] ';
        tkMethod     : PropStr := '[Method]';
        tkSet        : PropStr := '[Set]   ';
        tkEnumeration: PropStr := '[Enum]  ';
      else
        PropStr1 := '[Field] ';
      end;

     PropStr1 := PropStr1 + PropList[j]^.Name;
     PropStr1 := PropStr1 + ' : ' + PropList[j]^.PropType^.Name;
     sValues:=GetPropValue(Tmytmp,PropList1[j].Name,True);
     ShowMessage(PropStr+' : '+sValues);
   end;
   end
   else
   begin
     sValues:=GetPropValue(myLine,PropList[I].Name,True);
     ShowMessage(PropStr+' : '+sValues);
   end;

 end;
 FreeMem(PropList);

end;

end.

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值