show/hide this revision's text 2 Constructor description.

Very ease. Call Create. Example:

procedure test
var
  b : TButton;
begin
  b:=TButton.Createb:=TButton.Create(nil);
  b.visible:=false;
end;

This creates a component (TButton is a component) at runtime and sets the property visible.


For the constructor: pass nil if you want to manage the memory yourself. Pass a pointer another component if you want to have it destroyed when the other component is destroyed.

show/hide this revision's text 1

Very ease. Call Create. Example:

procedure test
var
  b : TButton;
begin
  b:=TButton.Create;
  b.visible:=false;
end;

This creates a component (TButton is a component) at runtime and sets the property visible.