Registriert seit: 12. Aug 2003
Ort: Soest
4.016 Beiträge
Delphi 10.1 Berlin Enterprise
|
AW: Verständnisfrage zu TValue
5. Mär 2020, 10:53
Delphi-Quellcode:
function RestoreProperty(aInstance: TObject; const aPropertyName: string; const aValue: TValue): Boolean;
var
prop: TRttiProperty;
begin
prop := TType.GetType(aInstance.ClassType).GetProperty(aPropertyName);
prop.SetValue(aInstance, aValue.Convert(prop.PropertyType.Handle));
end;
|