Reputation: 2016
I want to use a group of points to make a stroke in the ink canvas. How to convert StylusPointCollection
or points into StrokeCollection
?
Upvotes: 3
Views: 1454
Reputation: 11247
Did you actually mean Stroke
?
You can simply use the constructor of Stroke
to convert from StylusPointCollection
.
public Stroke (
StylusPointCollection stylusPoints
)
Upvotes: 2