awvGetPlotStyle
awvGetPlotStyle(w_windowID[?subwindowx_subwindow] ) =>t_plotStyle/nil
Description
Returns the plotting style for waveforms in a subwindow of the specified Waveform window.
Arguments
Value Returned
|
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