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

awvSetDisplayMode

awvSetDisplayMode(
w_windowID
t_mode
[ ?subwindow x_subwindow ]
)
=> t / nil

Description

Sets display mode of a subwindow of the specified Waveform window.

Arguments

w_windowID

Waveform window ID.

t_mode

Display mode to be set for the subwindow.

Valid values are:

  • composite
  • smith
  • strip

?subwindow x_subwindow

Identification number of the subwindow (found in the top-right corner of the subwindow) whose display mode is to be set.

If you do not specify this argument, the specified display mode is set to the current subwindow.

Value Returned

t

Display mode of the subwindow is set successfully.

nil

The specified Waveform window, subwindow, or display mode does not exist.

Examples

The following example sets display mode of subwindow 2 of the current Waveform window to smith.

win = awvGetCurrentWindow()
=> window:89
awvSetDisplayMode(win "smith" ?subwindow 2)
=> t

The following example sets display mode of the current subwindow of the specified Waveform window to strip.

awvSetDisplayMode(window(90) "strip")
=> t

Return to top
 ⠀
X