Interface ITableSection

basic interface of a table section

interface ITableSection {
    body: HTMLElement;
    header: HTMLElement;
    height: number;
    id: string;
    width: number;
    destroy(): void;
    hide(): void;
    init(): void;
    show(left, width, isGoingRight): void;
}

Implemented by

Properties

body: HTMLElement
header: HTMLElement
height: number
id: string
width: number

Methods

  • show the section

    Parameters

    • left: number

      visible left margin

    • width: number

      visible width

    • isGoingRight: boolean

      whether it was a shift to the right

    Returns void