描述
设置用于开始和结束的线GraphicsPath对象中定义这个CustomLineCap对象的LineCap对象.
C++ Syntax
Status SetStrokeCap( [in] LineCap strokeCap ); |
FreeBASIC 语法
FUNCTION SetStrokeCap ( _ BYVAL strokeCap AS LineCap _ ) AS GpStatus |
参数
strokeCap
该LineCap指定线帽,将线的两端被拉[in]元.
返回值
如果该方法成功,则返回Ok,这是对Status枚举元素.
如果这个方法失败,它返回一个枚举的其他元素的Status.
引用文件
CGpLineCaps.inc (include CGdiPlus.inc)
示例
' ========================================================================================
' The following example creates a CustomLineCap object and sets its start and end stroke caps.
' It then assigns the custom cap to a Pen object and draws a line.
' ========================================================================================
SUB Example_SetStrokeCap (BYVAL hdc AS HDC)
' // Create a graphics object from the window device context
DIM graphics AS CGpGraphics = hdc
' // Get the DPI scaling ratio
DIM rxRatio AS SINGLE = graphics.GetDpiX / 96
DIM ryRatio AS SINGLE = graphics.GetDpiY / 96
' // Set the scale transform
graphics.ScaleTransform(rxRatio, ryRatio)
' // Create a Path object, and add two lines to it
DIM pts(0 TO 2) AS GpPoint = {GDIP_POINT(-15, -15), GDIP_POINT(0, 0), GDIP_POINT(15, -15)}
'#ifdef __FB_64BIT__
' DIM pts(0 TO 2) AS GpPoint = {(-15, -15), (0, 0), (15, -15)}
'#else
' ' // With the 32-bit compiler, the above syntax can't be used because a mess in the
' ' // FB headers for GdiPlus: GpPoint is defined as Point in 64 bit and as Point_ in 32 bit.
' DIM pts(0 TO 2) AS GpPoint
' pts(0).x = -15 : pts(0).y = -15 : pts(2).x = 15: pts(2).y = -15
'#endif
DIM capPath AS CGpGraphicsPath = FillModeAlternate
capPath.AddLines(@pts(0), 3)
' // Create a CustomLineCap object, and set its base cap to LineCapRound
DIM custCap AS CGpCustomLineCap = CGpCustomLineCap(NULL, @capPath)
' // Set the start and end caps for custCap to LineCapTriangle
custCap.SetStrokeCap(LineCapTriangle)
' // Create a Pen object, assign startStrokeCap and endStrokeCap as the
' // start and end caps, and draw a line.
DIM strokeCapPen AS CGpPen = CGpPen(GDIP_ARGB(255, 255, 0, 0), 4.8)
strokeCapPen.SetCustomEndCap(@custCap)
graphics.DrawLine(@strokeCapPen, 100, 100, 300, 100)
END SUB
' ========================================================================================