awvGetWindowTitle
awvGetWindowTitle(w_windowID) =>t_windowTitle/nil
Description
Returns the title of a subwindow in the specified Waveform window.
Arguments
Value Returned
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