Technical data
Mask Test Commands 23
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 413
:MTESt:ENABle
Command :MTESt:ENABle {{ON | 1} | {OFF | 0}}
The :MTESt:ENABle command enables or disables the mask test features.
ON Enables the mask test features.
OFF Disables the mask test features.
Example This example enables the mask test features.
myScope.WriteString ":MTEST:ENABLE ON"
Query :MTESt:ENABle?
The :MTESt:ENABle? query returns the current state of mask test features.
Returned Format
[MTESt:ENABle] {1 | 0}<NL>
Example This example places the current value of the mask test state in the
numeric variable varValue, then prints the contents to the computer's
screen.
myScope.WriteString ":SYSTEM:HEADER OFF"
myScope.WriteString ":MTEST:ENABLE?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)