This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

42 lines
734 B
ObjectPascal

// Модуль ABCObjects. Изменение свойств объекта
uses ABCObjects,GraphABC;
const delay = 300;
procedure Pause;
begin
Sleep(delay);
end;
var
r: RectangleABC;
z: StarABC;
begin
z := new StarABC(Window.Center.X,Window.Center.Y,70,30,6,Color.Green);
r := new RectangleABC(100,100,200,100,Color.Gold);
Pause;
r.Center := Window.Center;
Pause;
r.Height := 70;
Pause;
r.Width := 220;
Pause;
z.Radius := 150;
Pause;
z.Color := Color.LightCoral;
Pause;
z.Count := 5;
Pause;
r.Text := 'PascalABC.NET';
r.Color := Color.Gainsboro;
Pause;
r.BorderWidth := 3;
r.BorderColor := Color.Blue;
Pause;
r.Center := Window.Center;
Pause;
// r.Bordered := False;
end.