DELPHI FAQ: Как установить значение свойства компонента по имени?


Как установить значение свойства компонента по имени?
Previous  Home  Next




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.



Tip by Jeff Overcash



Взято из http://www.lmc-mediaagentur.de/dpool





DELPHI FAQ




EOMY TOP 100      Рейтинг@Mail.ru      Rambler's Top100