RAD Studio VCL Reference
|
Determines the style in which the pen draws lines.
property Style: TPenStyle;
__property TPenStyle Style;
Use Style to draw a dotted or dashed line, or to omit the line that appears as a frame around shapes.
C++ Examples:
/* This example draws many rectangles of various sizes and colors on a form maximized to fill the entire screen. To run the code, drop a TTimer component on the form and use the object inspector to create the OnTimer and OnActivate event handlers. */ int x, y; void __fastcall TForm1::FormActivate(TObject *Sender) { WindowState = wsMaximized; Timer1->Interval = 50; randomize(); } void __fastcall TForm1::Timer1Timer(TObject *Sender) { x = random(Screen->Width - 10); y = random(Screen->Height - 10); Canvas->Pen->Color = (Graphics::TColor) random(65535); switch (random(5)) { case 0: Canvas->Pen->Style = psSolid; break; case 1: Canvas->Pen->Style = psDash; break; case 2: Canvas->Pen->Style = psDot; break; case 3: Canvas->Pen->Style = psDashDot; break; case 4: Canvas->Pen->Style = psDashDotDot; break; } Canvas->Rectangle(x, y, x + random(400), y + random(400)); }
Delphi Examples:
{ This example draws many rectangles of various sizes and colors on a form maximized to fill the entire screen. To run the code, drop a TTimer component on the form and use the object inspector to create the OnTimer and OnActivate event handlers. } var X, Y: Integer; procedure TForm1.FormActivate(Sender: TObject); begin WindowState := wsMaximized; Timer1.Interval := 50; Randomize; end; procedure TForm1.Timer1Timer(Sender: TObject); begin X := Random(Screen.Width - 10); Y := Random(Screen.Height - 10); Canvas.Pen.Color := Random(65535); case Random(5) of 0: Canvas.Pen.Style := psSolid; 1: Canvas.Pen.Style := psDash; 2: Canvas.Pen.Style := psDot; 3: Canvas.Pen.Style := psDashDot; 4: Canvas.Pen.Style := psDashDotDot; end; Canvas.Rectangle(X, Y, X + Random(400), Y + Random(400)); end;
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|