procedure TForm1.Button1Click(Sender: TObject);
var
  S: string;
begin
//  Str(1, S); //= '1'
//  Str(2:1, S); //= ' 2'
  Str(2.0:1:2, S); //= '2.00'
  Caption := S;
end;