Technical data

366 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
19 InfiniiScan (ISCan) Commands
:ISCan:ZONE<N>:PLACement
Command :ISCan:ZONE<N>:PLACement <width>,<height>,<x_center>,<y_center>
The :ISCan:ZONE<N>:PLACement command sets the location and size of a
zone for the zone qualify trigger mode.
<N> is an integer from 1-4.
<width> a real number defining the width of a zone in seconds.
<height> is a real number defining the height of a zone in volts.
<x_center> is a real number defining the x coordinate of the center of the zone in
seconds.
<y_center> is a real number defining the y coordinate of the center of the zone in
volts.
Example The following example sets the size of zone 1 to be 500 ps wide and 0.5
volts high and centered about the xy coordinate of 1.5 ns and 1 volt.
myScope.WriteString ":ISCAN:ZONE1:PLACEMENT 500e-12,0.5,1.5e-9,1"
Query :ISCan:ZONE<N>:PLACement?
The query returns the placement values used by zone 1.
Returned Format
[:ISCan:ZONE<N>:PLACement]<width>,<height>,<x_center>,
<y_center><NL>
Example The following example returns the current placement values for zone 1.
Dim strPLACEMENT As String
myScope.WriteString ":ISCAN:ZONE1:PLACEMENT?"
strPLACEMENT = myScope.ReadString
Debug.Print strPLACEMENT