Click or drag to resize

GraphicsPathAddPath Method

Adds the specified path to the current path, optionally connecting the current figure to the start of the path

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public void AddPath(
	IGraphicsPath path,
	bool connect = false
)

Parameters

path
Type: Eto.DrawingIGraphicsPath
Child path to add to this instance
connect (Optional)
Type: SystemBoolean
True to connect the current figure to the first figure of the specified path, if it is not closed

Implements

IGraphicsPathAddPath(IGraphicsPath, Boolean)
Remarks
The connect parameter only specifies that the path should be connected to the current path at the beginning. The end of the specified path will always be connected to the next segment added to this path, unlesss CloseFigure or StartFigure are called after this.
See Also