Interface SelectableShape

interface SelectableShape {
    canSelect: boolean;
    deselect(): void;
    select(): void;
    selectStyles(): ShapeStyles;
}

Implemented by

Properties

canSelect: boolean

Methods

  • Selects the shape. Can use this to perform any actions when the shape is deselected

    Returns void

  • Selects the shape. Can use this to perform any actions when the shape is selected

    Returns void