XIH.GetDouble
Returns the value of the specified column as double.
Syntax
XIH.GetDouble(colcaption)
XIH.GetDouble(colcaption, offset)
XIH.GetDouble(colIndex)
XIH.GetDouble(colIndex, offset)
Parameters
Parameter | Data type | Description | Sample |
---|---|---|---|
colcaption | string | String specifies the columns caption. | "col1" |
colIndex | int | Index of a column | 1 |
offset | int | Optionally specifies the row offset. Default is 1 | 1 |
Remarks
ColumnIndex is zero-based.
A statement with an offset returns 0 after reaching the end of the column due to the offset.
Can convert: Int32 and boolean.
Returns a double.
Examples
XIH.GetDouble(
"Umsatz"
)
XIH.GetDouble(
"Umsatz"
, 2)
XIH.GetDouble(0)
Related
- TIS Parameters
- XIH Functions