JavaScript

windowObject.setTitle Method

Syntax

windowObj.setTitle(title);

Arguments

titlestring

The window title.

Description

Sets the Window title.

Example

//get a pointer to the window object
var windowObj = {dialog.object}.getWindow('MYWINDOW');

if (windowObj) {
    windowObj.setTitle('My Window Title);
}