Type alias TcreateLayoutOptions

TcreateLayoutOptions: {
    colors?: any;
    divId: string;
    height?: string | number;
    id: string;
    onResizeCallback?: ((event, panels?) => void);
    width?: string | number;
}

Type declaration

  • Optional colors?: any

    To define.

  • divId: string

    ID of the div. given via <div id="blabla" #blabla></div>

  • Optional height?: string | number

    The height, that should be set e.g. 100% or 100px

  • id: string

    Id of the Layout

  • Optional onResizeCallback?: ((event, panels?) => void)
      • (event, panels?): void
      • Function which is called during resizing.

        Receives the event and the panels (containg all panels of the layout)

        Parameters

        Returns void

  • Optional width?: string | number

    The width, that should be set e.g. 100% or 100px

Generated using TypeDoc