awvRemoveSubwindowTitle
awvRemoveSubwindowTitle(w_windowID[?subwindowx_subwindow] ) =>t/nil
Description
Removes the title from a subwindow of the specified Waveform window.
Arguments
|
Identification number of the subwindow from which the title is to be removed. If you do not specify this argument, the title is removed from the current subwindow. |
|
Value Returned
|
Title is removed from a subwindow of the specified Waveform window. |
|
Examples
The following example removes the title from the subwindow 2 of the current Waveform window.
win = awvGetCurrentWindow()
=> window:77
awvRemoveSubwindowTitle(win ?subwindow 2)
=> t
The following example removes the title from the current subwindow of the specified Waveform window.
awvRemoveSubwindowTitle(window(77))
=> t
Return to top