IInkPointFactory IInkPointFactory IInkPointFactory IInkPointFactory Interface

Definition

Defines the implementation for a type that generates InkPoint objects used in the construction of an InkStroke.

public : interface IInkPointFactorypublic interface IInkPointFactoryPublic Interface IInkPointFactory// You can use this interface in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Methods

CreateInkPoint(Point, Single) CreateInkPoint(Point, Single) CreateInkPoint(Point, Single) CreateInkPoint(Point, Single)

Generates an InkPoint object that includes position and pressure information used in the construction of an InkStroke.

public : InkPoint CreateInkPoint(Point position, float pressure)public InkPoint CreateInkPoint(Point position, Single pressure)Public Function CreateInkPoint(position As Point, pressure As Single) As InkPoint// You can use this method in JavaScript.
Parameters
position
Point Point Point Point

The screen coordinates for the InkPoint object.

pressure
float Single Single Single

The pressure of the contact on the digitizer surface. The default is 0.5.

Returns
See Also

See Also