Interface VMScriptGMTabControl

interface VMScriptGMTabControl {
    close: (() => void);
    closed: boolean;
    onclose?: (() => void);
}

Properties

Properties

close: (() => void)

A function to explicitly close the opened tab.

Type declaration

    • (): void
    • Returns void

closed: boolean

Whether the opened tab is closed.

onclose?: (() => void)

Сan be assigned to a function. If provided, it will be called when the opened tab is closed.

Type declaration

    • (): void
    • Returns void