awvSetXAxisMinorDivisions
awvSetXAxisMinorDivisions(w_windowID x_numMinorDiv[?subwindowx_subwindow] ) =>t/nil
Description
Sets the number of minor divisions on the x axis of a graph in a subwindow of the specified Waveform window.
Arguments
|
Identification number of the subwindow, which is found in the top-right corner of the subwindow. If you do not specify this argument, the current subwindow is used. |
|
Value Returned
|
Number of the minor divisions on the x axis is set successfully. |
|
Examples
The following example sets the number of minor divisions on the x axis to 10 in the current subwindow of the current Waveform window.
awvSetXAxisMinorDivisions(awvGetCurrentWindow() 10 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
The following example sets the number of minor divisions on the x axis to 20 in the subwindow 2 of the specified Waveform window.
awvSetXAxisMinorDivisions(window(16) 20 ?subwindow 2)
=> t
Return to top