Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ContainerModel

name

ContainerModel

Hierarchy

  • ContainerModel

Implemented by

Index

Methods

clear

  • clear(): void
  • Called to indicate that you should clear your model of the container.

    Returns void

insert

  • 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

move

  • 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

remove

  • 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