|
RAD Studio for Microsoft .NET
|
These procedures draw two diagonal straight lines on an image in a VCL form.
New
Other
Delphi for .NET Projects
VCL Forms Application.
with Canvas do
begin
MoveTo(0,0);
LineTo(ClientWidth, ClientHeight);
MoveTo(0, ClientHeight);
LineTo(ClientWidth, 0);
end;
Run. The application executes, displaying a form with two diagonal crossing lines. |
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|