mqscript_ubound
Retrieves the upper bound index of a specified array in MQScript mobile automation, enabling precise array manipulation for device control operations.
Instructions
Get upper bound of array
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arrayName | Yes | Name of the array | |
resultVariable | No | Variable name to store result | result |
Input Schema (JSON Schema)
{
"properties": {
"arrayName": {
"description": "Name of the array",
"type": "string"
},
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
}
},
"required": [
"arrayName"
],
"type": "object"
}