hiDisplayWindow
hiDisplayWindow(w_windowId|w_sessionWindowID[w_sessionWindowId] [g_tabTitle] [g_tabIcon] [g_tabTip] ) =>t / nil
Description
Displays any window created by hiCreateWindow, including session windows; does not display dockable windows or empty session windows. This function always displays graphics windows in a session window—if you do not specify a session window, this function creates a new one and displays the graphics window in it.
Use the second argument to specify the session window in which to place the window. If the session window already contains windows, a new tab is created for the new window, and the new tab and new window are raised to the top. If the session window is not yet displayed, it is displayed.
If a session window is the first argument, no other arguments are accepted. You cannot display an empty session window; it must contain a window.
This function does not display dockable windows. To display dockable windows, use hiDockWindow.
This function is not available in Concept SKILL. For more information, see
Arguments
Values Returned
Examples
Associates a window with a session window and displays it:
hiDisplayWindow( myWin mySessionWin )
Displays a graphics window in a new session window:
hiDisplayWindow( myGraphicsWin )
Displays a non-empty session window:
hiDisplayWindow( mySessionWindow )
Related Topics
Return to top