Name

ContainerModel

Hierarchy

  • ContainerModel

Constructors

Methods

Constructors

Methods

  • Called to indicate that you should clear your model of the container.

    Returns void

  • Called to indicate that you should insert the ContainerElement at the specified position.

    Parameters

    • index: number

      The index at which to insert the ContainerElement.

    • element: ContainerElement

      The ContainerElement to insert.

    Returns void

  • Called to indicate that you should move the specified ContainerElement.

    Parameters

    • from: number

      The index at which the ContainerElement is currently located.

    • to: number

      The index to which the ContainerElement should be moved to.

    • element: ContainerElement

      The ContainerElement to move.

    Returns void

  • Called to indicate that you should remove the ContainerElement from the specified position.

    Parameters

    • index: number

      The index at which to remove the ContainerElement.

    • element: ContainerElement

      The ContainerElement to remove.

    Returns void

Generated using TypeDoc