pascalabcnet/TestSuite/CompilationSamples/ABC1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

41 lines
734 B
ObjectPascal

// Ìîäóëü ABCObjects. Èçìåíåíèå ñâîéñòâ îáúåêòà
uses ABCObjects,GraphABC;
const delay = 300;
procedure Pause;
begin
Sleep(delay);
end;
var
r: RectangleABC;
z: StarABC;
begin
Window.Title := 'ABCObjects: ñâîéñòâà ãðàôè÷åñêèõ îáúåêòîâ';
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;
end.