User manual

Table Of Contents
MAUI Oscilloscopes Remote Control and Automation Manual
Sweeps
Number of sweeps used for results that are based on multiple sweeps, such as averages, histograms, eye
diagrams, etc.
Applies to: Digital, Histogram, Persist, Waveform, XY
Dim Sweeps as Long
Sweeps = app.Acquisition.C1.Out.Result.Sweeps
Top
Horizontal coordinate of the rightmost of the two most populated histogram peaks. It is equivalent to the
paramater htop.
Applies to: Histogram
Dim htop as Double
htop = app.Math.F1.Out.Result.Top
UniformInterval
Returns if the samples are evenly spaced in time. Currently always true.
Applies to: Digital
UpdateTime
Indicates the time that particular result was most recently updated. Often, this property will show the
same value as LastEventTime, but for traces such as memories (M1, M2, etc) this will be the time that the
waveform was stored to the memory trace. Times are returned encoded as a currency value (VT_CY)
within a variant; see description for FirstEventTime for decoding details.
Applies to: all Result Interfaces.
Dim UpdateTime
Dim TimeString as String
UpdateTime = app.Memory.M1.Out.Result.UpdateTime
TimeString = DecodeTimeProperty(UpdateTime)
See FirstEventTime for the code for the function DecodeTimeProperty, which is the example of decoding
UpdateTime.
4-24