GraphicsPathExtensionsAddLines Method |
Adds lines to each of the specified points
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static void AddLines(
this IGraphicsPath path,
params PointF[] points
)
<ExtensionAttribute>
Public Shared Sub AddLines (
path As IGraphicsPath,
ParamArray points As PointF()
)
[<ExtensionAttribute>]
static member AddLines :
path : IGraphicsPath *
points : PointF[] -> unit
Parameters
- path
- Type: Eto.DrawingIGraphicsPath
Path to add the lines to - points
- Type: Eto.DrawingPointF
Points for each line
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IGraphicsPath. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also