Technical data
InfiniiScan (ISCan) Commands 19
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 365
:ISCan:ZONE<N>:MODE
Command :ISCan:ZONE<N>:MODE {INTersect | NOTintersect}
The :ISCan:ZONE<N>:MODE command sets the Zone Qualify trigger mode.
For the INTersect mode, the waveform must enter the zone region to
qualify as a valid waveform. For NOTintersect mode, the waveform cannot
enter a zone region to qualify as a valid waveform.
<N> is an integer from 1-4.
Example The following example sets the mode to intersect for zone 1.
myScope.WriteString ":ISCAN:ZONE1:MODE INTERSECT"
Query :ISCan:ZONE<N>:MODE?
The query returns the mode used by zone 1.
Returned Format
[:ISCan:ZONE<N>:MODE]{INTersect | NOTintersect}<NL>
Example The following example returns the currently selected mode for zone 1.
Dim strMODE As String
myScope.WriteString ":ISCAN:ZONE1:MODE?"
strMODE = myScope.ReadString
Debug.Print strMODE