Technical data

348 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
19 InfiniiScan (ISCan) Commands
:ISCan:DELay
Command :ISCan:DELay {OFF | <delay_time>}
The :ISCan:DELay command sets the delay time from when the hardware
trigger occurs and when InfiniiScan tries to find the waveform event that
has been defined.
OFF Turns off the delay from the hardware trigger.
<delay_time> Sets the amount of time that the InfiniiScan trigger is delayed from the
hardware trigger.
Example The following example causes the oscilloscope to delay by 1 ms.
myScope.WriteString ":ISCAN:DELay 1E-06"
Query :ISCan:DELay?
The query returns the current set delay value.
Returned Format
[:ISCan:DELay] {OFF | <delay_time>}<NL>
Example The following example returns the current delay value and prints the
result to the controller's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":ISCAN:DELAY?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)