Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

awvRemoveSubwindowTitle

awvRemoveSubwindowTitle(
w_windowID
[ ?subwindow x_subwindow ]
)
=> t / nil

Description

Removes the title from a subwindow of the specified Waveform window.

Arguments

w_windowID

Waveform window ID.

?subwindow x_subwindow

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

t

Title is removed from a subwindow of the specified Waveform window.

nil

The specified Waveform window or subwindow does not exist.

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
 ⠀
X