interface TipController {
    attach(target: HTMLElement, spec: TipSource, dwellMs?: number): void;
    destroy(): void;
    hide(): void;
    refreshLabel(target: HTMLElement): void;
    show(target: HTMLElement): void;
    target(): null | HTMLElement;
}

Methods

  • Give target a hover label. dwellMs delays it; 0 shows on entry.

    Parameters

    • target: HTMLElement
    • spec: TipSource
    • OptionaldwellMs: number

    Returns void

  • Re-read a control's spec into its accessible name.

    Parameters

    • target: HTMLElement

    Returns void

  • The control the tip is up for, or null.

    Returns null | HTMLElement