Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Die Delphi-IDE (https://www.delphipraxis.net/62-die-delphi-ide/)
-   -   RTTI Enum von Propertys? (https://www.delphipraxis.net/183514-rtti-enum-von-propertys.html)

Mavarik 17. Jan 2015 11:13

AW: RTTI Enum von Propertys?
 
Zitat:

Zitat von Der schöne Günther (Beitrag 1286710)
Delphi-Quellcode:
procedure justRttiThings();
var
   context: TRttiContext;
   rttiType: TRttiType;
   properties: TArray<TRttiProperty>;
   propertyIterator: TRttiProperty;
begin
   context := TRttiContext.Create();
   properties := context.GetType( TypeInfo(TObjectHelper)).GetProperties();

   for propertyIterator in properties do
      WriteLn(propertyIterator.Name);
end;

Das ist schon gut...

Aber was ist wenn ich so etwas habe?

Delphi-Quellcode:
Type
    TFooBasis = class
       private
          FInt : Integer;
       public
          property ParamInt : Integer read FInt;
    end;

    TFoo     = class
       private
         FBool : Boolean;
       public
         Property ParamBool : Boolean read FBool;
    end;

var
    FooBasis : TFooBasis;
begin
   FooBasis := TFoo.Create;

   GetAllPropertys(FooBasis);
end;
Komme ich da auch an die Propertys?

Mavarik

Stevie 17. Jan 2015 12:22

AW: RTTI Enum von Propertys?
 
Delphi-Quellcode:
procedure GetAllProperties(obj: TObject);
var
  context: TRttiContext;
  properties: TArray<TRttiProperty>;
  propertyIterator: TRttiProperty;
begin
  properties := context.GetType(obj.ClassInfo).GetProperties();
  for propertyIterator in properties do
    WriteLn(propertyIterator.Name);
end;

himitsu 17. Jan 2015 18:33

AW: RTTI Enum von Propertys?
 
Zitat:

Zitat von Mavarik (Beitrag 1286808)
Aber was ist wenn ich so etwas habe?

Einen Cmpiler-Fehler.


Und wenn man es dennoch schaft das da reinzubekommen, dann holt man da natürlich die RTTI-Infos aus der Instanz und nicht aus dem Variablentyp.

FooBasis.ClassInfo / FooBasis.ClassName


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:54 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz