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

awvGetPlotStyle

awvGetPlotStyle(
w_windowID
[ ?subwindow x_subwindow ]
)
=> t_plotStyle / nil

Description

Returns the plotting style for waveforms in a subwindow of the specified Waveform window.

Arguments

w_windowID

Waveform window ID.

?subwindow x_subwindow

Identification number of the subwindow (found in the top-right corner of the subwindow) whose plotting style is to be returned.

If you do not specify this argument, plotting style of the current subwindow is returned.

Value Returned

t_plotStyle

Plotting style of the subwindow.

nil

The specified Waveform window or the subwindow does not exist.

Examples

The following example returns the plotting style set to subwindow 2 in the current Waveform window.

awvGetPlotStyle(awvGetCurrentWindow() ?subwindow 2)
=> "points"

The following example returns the plotting style set to subwindow 4 in the specified Waveform window.

awvGetPlotStyle(window(3) ?subwindow 4)
=> "line"

Return to top
 ⠀
X