Interface IDrawingModelListener

interface IDrawingModelListener {
    onAnchorUpdate?(cellRangeCoords): void;
    onAnyChange?(src): void;
    onBoundsChange?(bounds): void;
    onClose?(model): void;
    onDelete?(model): void;
    onProtectedChange?(src): void;
}

Hierarchy (view full)

Methods

  • Called when the Drawing model has changed.

    This is not called when individual properties on the view change.

    Parameters

    Returns void

  • Called when the drawing bounds are updated.

    Parameters

    Returns void