awvDisplayTitle
awvDisplayTitle(w_windowID t_title) =>t/nil
Description
Displays the specified title in the specified Waveform window.
Arguments
Value Returned
Examples
The following example displays the title Transient Response in the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvDisplayTitle(win "Transient Response")
=> t
The following example displays the title Noise Analysis in the specified Waveform window.
awvDisplayTitle(window(5) "Noise Analysis")
=>t
Return to top