Mirror

How to set the properties of a component at runtime (Views: 715)


Problem/Question/Abstract:

I want to set the font property of all my forms, buttons, labels, etc. on 50 different forms. How do I go about doing this? Is there some RTTI procedure or just using the "as" operator? I need this procedure to be recursive, too.

Answer:

You can use RTTI to do this. Here is how to change a particular component:

procedure TForm1.BtnClick(Sender: TObject);
var
  p: PPropInfo;
  f: TFont;
begin
  f := TFont.Create;
  {Setup the font properties}
  f.Name := 'Arial';
  p := GetPropInfo(Sender.ClassInfo, 'Font');
  if Assigned(p) then
    SetOrdProp(Sender, p, Integer(f));
  f.Free;
end;

To get at all the forms loop through the Screen global variable. For each form loop through its Components list calling the above procedure (or something close). If you only create your components at design time that is it. If you create some at runtime and the owner is not the form, then for each component loop through its Components list recursively to get at all the owned components.

<< Back to main page