Share via


PathF.MoveTo Method

Definition

Overloads

MoveTo(PointF)

Starts a new sub-path at the specified point.

MoveTo(Single, Single)

Starts a new sub-path at the specified coordinates.

MoveTo(PointF)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Starts a new sub-path at the specified point.

public:
 Microsoft::Maui::Graphics::PathF ^ MoveTo(Microsoft::Maui::Graphics::PointF point);
public Microsoft.Maui.Graphics.PathF MoveTo(Microsoft.Maui.Graphics.PointF point);
member this.MoveTo : Microsoft.Maui.Graphics.PointF -> Microsoft.Maui.Graphics.PathF
Public Function MoveTo (point As PointF) As PathF

Parameters

point
PointF

Starting point of the new sub-path.

Returns

The current path for chaining.

Applies to

MoveTo(Single, Single)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Starts a new sub-path at the specified coordinates.

public:
 Microsoft::Maui::Graphics::PathF ^ MoveTo(float x, float y);
public Microsoft.Maui.Graphics.PathF MoveTo(float x, float y);
member this.MoveTo : single * single -> Microsoft.Maui.Graphics.PathF
Public Function MoveTo (x As Single, y As Single) As PathF

Parameters

x
Single

X coordinate of the starting point.

y
Single

Y coordinate of the starting point.

Returns

The current path for chaining.

Applies to