IGraphicsPathAddLines Method |
Adds lines to each of the specified points to the path
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void AddLines(
IEnumerable<PointF> points
)
Sub AddLines (
points As IEnumerable(Of PointF)
)
abstract AddLines :
points : IEnumerable<PointF> -> unit
Parameters
- points
- Type: System.Collections.GenericIEnumerablePointF
Points for each part of the line
Remarks
If the current figure is not closed, it will connect with the first point specified.
The current position will be moved to the last point specified
See Also