awvGetCurrentSubwindow
awvGetCurrentSubwindow(w_windowID) =>x_subwindow/nil
Description
Returns the identification number of the current subwindow in the specified Waveform window.
Arguments
Value Returned
|
The identification number of the current subwindow (found in the top-right corner of the subwindow) of the specified Waveform window. |
|
Examples
The following example removes the title from the subwindow 2 of the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvRemoveSubwindowTitle(win ?subwindow 2)
=> t
The following example removes the title from the current subwindow of the specified Waveform window.
awvRemoveSubwindowTitle(window(5))
Return to top