GraphicsPathExtensionsMoveTo Method |
Moves the current position to the specified point without adding anything to the path
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static void MoveTo(
this IGraphicsPath path,
PointF point
)
<ExtensionAttribute>
Public Shared Sub MoveTo (
path As IGraphicsPath,
point As PointF
)
[<ExtensionAttribute>]
static member MoveTo :
path : IGraphicsPath *
point : PointF -> unit
Parameters
- path
- Type: Eto.DrawingIGraphicsPath
Path to move the current position - point
- Type: Eto.DrawingPointF
Point to move to
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