awvDisplaySubwindowTitle
awvDisplaySubwindowTitle(w_windowID t_title[?subwindowx_subwindow] ) =>t/nil
Description
Displays the specified title in a subwindow of the specified Waveform window.
Arguments
Value Returned
|
Title is displayed in a subwindow of the specified Waveform window. |
|
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