|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| var.getName(VariableIndex) |
Parameters
| INT | VariableIndex | Index of the variable. |
Return value
Description
| Returns the name of the variable. |
MioScript Sample Code
// Build the HTML code of the list of variables
&var_count = var.count()
var.arrray.clear(myArray)
for(&ptr, 0, &var_count)
&varName = var.getName(&ptr)
&varValue = var.get(&ptr)
myArray[&ptr] = &varName"="&varValue"<BR>"
for.next |
|
|
|