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

awvGetWindowTitle

awvGetWindowTitle(
w_windowID
)
=> t_windowTitle / nil

Description

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

Arguments

w_windowID

ID of the Waveform window whose title is to be returned.

Value Returned

t_windowTitle

Title of the specified Waveform window.

nil

The specified Waveform window does not exist.

Examples

The following example returns the title of the current Waveform window.

awvGetWindowTitle(awvGetCurrentWindow())
=> "Window 96"

The following example sets the title of the current Waveform window to Transient Analysis.

awvDisplayTitle(awvGetCurrentWindow() "Transient Analysis")
=> t

The following function now returns the title of the current Waveform window that is set using the awvDisplayTitle function.

awvGetWindowTitle(awvGetCurrentWindow())
=> "Transient Analysis"

The following example returns the title of the specified Waveform window.

awvGetWindowTitle(window(16))
=> "Frequency Response"

Return to top
 ⠀
X