User manual

Table Of Contents
Part 4: Automation Result Interface Reference
BinWidth
Width of each bin in the histogram.
Applies to: Histogram
Dim BinWidth as double
BinWidth = app.Math.F1.Out.Result.BinWidth
BusName
Name of the bus, which can be configured via the user interface or by the automation property
app.LogicAnalyzer.Digital1.BusName.
Applies to: Digital
Dim BusName As String
BusName = app.LogicAnalyzer.Digital1.Out.Result.BusName
CellType
Datatype for the selected cell in a table. This is used in order to properly read out the CellValue. Variant
type cells usually contain a second DataArray (i.e., table within a table) that must be indexed in addition to
the principal table in order to return the correct value. See Exposing Table Data for examples and helper
scripts.
Applies to: Table
Arguments
Row Long 0 = first row, usually header
with column descriptors
0-based index of the row containing the cell. Use the Rows
property to determine the maximum number of rows.
Column Long 0 = first column, usually row
index number
0-based index of the column containing the cell. Use the
Columns property to determine the maximum number of
columns.
Result Enum 0 = variant
2 = parameter
3 = Boolean
4 = histicon
Result type. Other values exist but do not apply to the Table
interface.
Example
Dim CellType As Integer
CellType = app.SerialDecode.Decode1.Out.Result.CellType(1, 1)
The example above returns the CellType for row 1, column 1.
4-5