Edit

SKPath.MoveTo Method

Definition

Overloads

Name Description
MoveTo(SKPoint)
Obsolete.

Sets the beginning of the next contour to the point.

MoveTo(Single, Single)
Obsolete.

Sets the beginning of the next contour to the point.

MoveTo(SKPoint)

Caution

Use SKPathBuilder instead.

Sets the beginning of the next contour to the point.

[System.Obsolete("Use SKPathBuilder instead.")]
public void MoveTo(SkiaSharp.SKPoint point);

Parameters

point
SKPoint

The coordinates of the start of a new contour.

Attributes

Applies to

MoveTo(Single, Single)

Caution

Use SKPathBuilder instead.

Sets the beginning of the next contour to the point.

[System.Obsolete("Use SKPathBuilder instead.")]
public void MoveTo(float x, float y);

Parameters

x
Single

The x-coordinate of the start of a new contour.

y
Single

The y-coordinate of the start of a new contour.

Attributes

Applies to