Interface PopupWindowFeatures

interface PopupWindowFeatures {
    closePopupWindowAfterInSeconds?: number;
    height?: number;
    left?: number;
    location?: string | boolean;
    menubar?: string | boolean;
    resizable?: string | boolean;
    scrollbars?: string | boolean;
    status?: string | boolean;
    toolbar?: string | boolean;
    top?: number;
    width?: number;
    [k: string]:
        | boolean
        | string
        | number
        | undefined;
}

Indexable

  • [k: string]:
        | boolean
        | string
        | number
        | undefined

Properties

closePopupWindowAfterInSeconds?: number

Close popup window after time in seconds, by default it is -1. To enable this feature, set value greater than 0.

height?: number
left?: number
location?: string | boolean
menubar?: string | boolean
resizable?: string | boolean
scrollbars?: string | boolean
status?: string | boolean
toolbar?: string | boolean
top?: number
width?: number