Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
AW: Property eines TObjects setzen Frage
13. Mai 2021, 09:36
Eventuell eher so:
Delphi-Quellcode:
for Prop in RType.GetProperties do
begin
if Prop.Name = sPropColor then
Prop.SetValue(AObject, FColorBackground);
if Prop.PropertyType.IsInstance and Prop.PropertyType.AsInstance.MetaclassType.InheritsFrom(TFont) and (Prop.Name = sPropFont) then
TFont(prop.GetValue(AObject).AsObject).Color := FColorText;
end;
|