Nutrient Web SDK

ReferenceEventsInkDrawingEvent

Type Alias InkDrawingEvent

This event is emitted whenever new in-flight points are captured during an active ink stroke.

Type Alias

Example

Get the in-flight annotation while drawing.

instance.addEventListener("ink.drawing", (event: InkDrawingEvent) => {
console.log(event.annotation.lines.last()?.size);
});

See Also

Properties