Skip to content 

IInkStroke Interface

Packages > @fluidframework/ink > IInkStroke

Represents a single ink stroke.

Signature:

export interface IInkStroke 

Properties

List of properties of this interface
Property Type Description
id string Unique identifier for the ink stroke.
pen IPen Description of the pen used to create the stroke.
points IInkPoint[] The points contained within the stroke.

Events

id

Unique identifier for the ink stroke.

Signature:

id: string;

pen

Description of the pen used to create the stroke.

Signature:

pen: IPen;

points

The points contained within the stroke.

Signature:

points: IInkPoint[];