Delphi GDI + Learning Record (3): Dashed brush

Source: Internet
Author: User

//虚线样式
var
 g: TGPGraphics;
 p: TGPPen;
begin
 g := TGPGraphics.Create(Canvas.Handle);
 p := TGPPen.Create(MakeColor(255,255,0,0),3);
 g.DrawLine(p, 11, 11, 333, 11);  {实线}
 p.SetDashStyle(DashStyleDashDot); {设置虚线样式}
 g.DrawLine(p, 11, 33, 333, 33);  {绘制任何形状都是可以的}
 p.Free;
 g.Free;
end;
//自定义虚线样式
var
 g: TGPGraphics;
 p: TGPPen;
const
 dash: array[0..3] of Single = (5,2,15,10); {虚线样式数组, 数组维数大小任意}
begin
 g := TGPGraphics.Create(Canvas.Handle);
 p := TGPPen.Create(MakeColor(255,255,0,0),3);
 g.DrawLine(p, 11, 11, 333, 11);
 p.SetDashPattern(@dash, Length(dash)); {设置虚线}
 g.DrawLine(p, 11, 33, 333, 33);
 p.Free;
 g.Free;
end;

Dashed style sheet:

Delphi Microsoft Description
Dashstylecustom Custom Specifies the user-defined custom underline segment style.
Dashstyledash Dash Specifies a line made up of an underlined segment.
Dashstyledashdot Dashdot Specifies a line formed by a repeating dotted pattern.
Dashstyledashdotdot Dashdotdot Specifies a line consisting of a pattern of repeating dotted dots.
Dashstyledot Dot Specifies a line consisting of dots.
Dashstylesolid Solid Specifies a solid line.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.