Buenos días a todos....
Pues podrías probar con algo como esto
Código Delphi
[-]
var
c: Tcomponent;
begin
c:= Button1;
SetPropValue(c, 'Caption', 'Functiona');
SetPropValue(c, 'Tag', 25);
SetPropValue(c, 'Anchors', 'akBottom,akRight');
SetPropValue( GetObjectProp(c, 'Margins'), 'Bottom', 50);
SetPropValue( GetObjectProp(c, 'Font'), 'Size', 20);
end;
Debes tener en el uses
System.TypInfo
Saludos.