awvGetLegendPos
awvGetLegendPos(w_windowID[?subwindowx_subwindow ] ) =>t_legendPosition/nil
Description
Returns the position of the trace legend in a subwindow of the specified Waveform window.
Arguments
Value Returned
Examples
The following examples return the position of the trace legend in subwindows 1, 3, and 5 in the specified Waveform window, respectively.
awvGetLegendPos(window(4) ?subwindow 1)
=> "left"
awvGetLegendPos(window(4) ?subwindow 3)
=> "inside"
awvGetLegendPos(window(4) ?subwindow 5)
=> "above"
The following example returns the position of the trace legend in the current subwindow of the specified Waveform window.
awvGetLegendPos(window(4))
=> "above"
Return to top