pascalabcnet/InstallerSamples/Graphics/GraphWPF/IsFixedSize.pas
Mikhalkovich Stanislav 9fee10155b GraphWPF IsFixedSize
2019-10-12 14:39:13 +03:00

8 lines
148 B
ObjectPascal

uses GraphWPF;
begin
Window.IsFixedSize := True;
Print(Window.IsFixedSize);
Window.IsFixedSize := False;
Print(Window.IsFixedSize);
end.