SKPath.MoveTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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