DeviceTGraphicContext, TRenderingOptionsMoveTo Method |
Begins a new subpath by moving the current point to coordinates of the parameter pt, omitting any connecting line segment.
If the previous path construction method in the current path was also "MoveTo", the new "MoveTo" overrides it;
no vestige of the previous "MoveTo" operation remains in the path.
Namespace: Aspose.Html.RenderingAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxpublic abstract void MoveTo(
PointF pt
)
Public MustOverride Sub MoveTo (
pt As PointF
)
public:
virtual void MoveTo(
PointF pt
) abstract
abstract MoveTo :
pt : PointF -> unit
Parameters
- pt
- Type: System.DrawingPointF
Point of where to move the path to.
Implements
IDeviceMoveTo(PointF)
See Also