User manual

Table Of Contents
MAUI Oscilloscopes Remote Control and Automation Manual
Accessing Out.Result Objects
To read Out.Result objects, use WriteString with the VBS? query (to access the result value) followed by
the ReadString method to return it in the desired format. The following code queries the result of the P1
parameter, reading a maximum of 80 bytes, and prints the results to the Interactive Window:
scope.WriteString("VBS? 'return=app.Measure.P1.Out.Result.Value' ",1)
value = scope.ReadString(80)
print(value)
2-52