SKPathMeasure.GetSegment 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
GetSegment(Single, Single, Boolean) | |
GetSegment(Single, Single, SKPath, Boolean) |
Given a start and stop distance, update the destination path with the intervening segment(s). |
GetSegment(Single, Single, Boolean)
GetSegment(Single, Single, SKPath, Boolean)
Given a start and stop distance, update the destination path with the intervening segment(s).
public bool GetSegment (float start, float stop, SkiaSharp.SKPath dst, bool startWithMoveTo);
Parameters
- start
- Single
The starting offset of the segment.
- stop
- Single
The end offset of the segment.
- dst
- SKPath
The path to hold the new segment.
- startWithMoveTo
- Boolean
If true, begin the path segment with a MoveTo(SKPoint).
Returns
Returns false if the segment is zero-length, otherwise returns true.
Remarks
The start and stop parameters are pinned to 0..Length.
Applies to
SkiaSharp