IGraphicsPathAddPath 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 void AddPath(
IGraphicsPath path,
bool connect = false
)
Sub AddPath (
path As IGraphicsPath,
Optional connect As Boolean = false
)
abstract AddPath :
path : IGraphicsPath *
?connect : bool
(* Defaults:
let _connect = defaultArg connect false
*)
-> unit
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
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