User manual

Table Of Contents
Part 4: Automation Result Interface Reference
HorizontalFrameStart
Coordinate of the left edge of the graticule containing the trace relative to the trigger time, which is at time
= 0.
Applies to: Digital, Histogram, Persist, Waveform, XY
Dim XFrameStart As Double
XFrameStart = app.Acquisition.C1.Out.Result.HorizontalFrameStart
HorizontalFrameStop
Coordinate of the right edge of the graticule containing the trace relative to the trigger time, which is at
time = 0.
Applies to: Digital, Histogram, Persist, Waveform, XY
Dim XFrameStop As Double
XFrameStop = app.Acquisition.C1.Out.Result.HorizontalFrameStop
HorizontalOffset
Time of the first sample. Note that the first sample is typically just off screen, to the left of the grid. Use
this value when calculating the time for each sample.
Applies to: Digital, Histogram, Persist, Waveform, XY
Dim HorizontalOffset As Double
HorizontalOffset = app.Acquisition.C1.Out.Result.HorizontalOffset
Dim HorizontalPerStep As Double
HorizontalPerStep = app.Acquisition.C1.Out.Result.HorizontalPerStep
Dim SampleTime as Double
Dim i as Long
For i = 0 to numPoints-1
SampleTime = HorizontalPerStep * i + HorizontalOffset
Next
For a more complete example, see the Waveform example in DataArray as well as the function
GetDataArray_Click.
HorizontalPerColumn
Difference in the horizontal coordinate of adjacent columns (typically in seconds). Use
HorizontalPerColumn to determine the timing information for each column of the DataArray.
Applies to: Persist
Dim HorizontalPerColumn As Double
HorizontalPerColumn = app.SDA.Eye.Out.Result.HorizontalPerColumn
4-13