CustomLineCap Constructor (GraphicsPath^, GraphicsPath^)

 

Initializes a new instance of the CustomLineCap class with the specified outline and fill.

Namespace:   System.Drawing.Drawing2D
Assembly:  System.Drawing (in System.Drawing.dll)

public:
CustomLineCap(
	GraphicsPath^ fillPath,
	GraphicsPath^ strokePath
)

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.

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.

The following example demonstrates how to use the CustomLineCap constructor. To run this example, paste the code into a Windows Form. Handle the form's Paint event and call DrawCaps from the form's Paint event-handling method, passing e as PaintEventArgs.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: