OOP Delphi

procedure TForm1.Button1Click(Sender: TObject);
begin
label1.caption := 'Test 1 Test 2 Test 3 ';
label2.caption := StringOfChar('*',Length(Label1.Caption));
end;