InkStrokeBuilder.CreateStroke(IIterable<Point>) Method

Definition

Creates a stroke from an array of Point coordinates.

Note

CreateStroke is not supported by InkPresenter. Use CreateStrokeFromInkPoints and SetDefaultDrawingAttributes to programmatically build strokes for an InkPresenter.

public:
 virtual InkStroke ^ CreateStroke(IIterable<Point> ^ points) = CreateStroke;
InkStroke CreateStroke(IIterable<Point> const& points);
public InkStroke CreateStroke(IEnumerable<Point> points);
function createStroke(points)
Public Function CreateStroke (points As IEnumerable(Of Point)) As InkStroke

Parameters

points

IIterable<Point>

IEnumerable<Point>

An array of Point coordinates.

Returns

The new stroke.

Applies to

See also