Interface DrawingAreaAttributes

interface DrawingAreaAttributes {
    focusDrawing: ((drawing) => void);
    isDrawingArea: (() => true);
}

Hierarchy (view full)

Properties

focusDrawing: ((drawing) => void)

Will put focus on the the drawing object.

Type declaration

Remarks

This does not handle scrolling. This must be done by the virtual container.

isDrawingArea: (() => true)

For runtime introspection.

Type declaration

    • (): true
    • Returns true