Registriert seit: 11. Jul 2008
166 Beiträge
Delphi XE Professional
|
AW: RTTI - Property - SetValue
28. Dez 2010, 00:49
So gehts:
Delphi-Quellcode:
// Testklasse
TTest = class
private
FStr: string;
public/published
property Str: string read FStr write FStr;
end;
// Wert schreiben
if Assigned(PropInfo) then
begin
PropValue := TValue.From(Value);
PropInfo.SetValue(T, PropValue);
end;
Geändert von Björn Ole (28. Dez 2010 um 00:57 Uhr)
|