Nutrient Web SDK
    Preparing search index...

    Type Alias InkDrawingEvent

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

    Get the in-flight annotation while drawing.

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

    Properties

    Properties