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

awvDisplaySubwindowTitle

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

Description

Displays the specified title in a subwindow of the specified Waveform window.

Arguments

w_windowID

Waveform window ID.

t_title

Specifies the title to be displayed in a subwindow.

?subwindow x_subwindow

Identification number of the subwindow (found in the top-right corner of the subwindow) in which the title is to be displayed.

If you do not specify this argument, the title is displayed in the current subwindow.

Value Returned

t

Title is displayed in a subwindow of the specified Waveform window.

nil

The specified Waveform window or subwindow does not exist.

Examples

The following example displays the title Transient Response in the subwindow 2 of the current Waveform window.

win = awvGetCurrentWindow()
=> window:4
awvDisplaySubwindowTitle(win "Transient Response" ?subwindow 2)
=> t

The following example displays the title Noise Analysis in the current subwindow of the specified Waveform window.

awvDisplaySubwindowTitle(window(5) "Noise Analysis")
=> t

Return to top
 ⠀
X