CustomLineCap Constructor (GraphicsPath^, GraphicsPath^, LineCap)
.NET Framework (current version)
Initializes a new instance of the CustomLineCap class from the specified existing LineCap enumeration with the specified outline and fill.
Assembly: System.Drawing (in System.Drawing.dll)
public:
CustomLineCap(
GraphicsPath^ fillPath,
GraphicsPath^ strokePath,
LineCap baseCap
)
Parameters
- fillPath
-
Type:
System.Drawing.Drawing2D::GraphicsPath^
A GraphicsPath object that defines the fill for the custom cap.
- strokePath
-
Type:
System.Drawing.Drawing2D::GraphicsPath^
A GraphicsPath object that defines the outline of the custom cap.
- baseCap
-
Type:
System.Drawing.Drawing2D::LineCap
The line cap from which to create the custom cap.
CustomLineCap uses a fill mode of "winding" regardless of the fill mode specified for the operation.
The fillPath and strokePath parameters cannot be used at the same time. One parameter must be passed a null value. If neither parameter is passed a null value, fillPath will be ignored. If strokePath is null, fillPath should intercept the negative y-axis.
.NET Framework
Available since 1.1
Available since 1.1
Show: