Node value. Binary format, numerical format (signed integers, unsigned integers, floating point numbers) will be converted to decimal expression character strings. Boolean format "true" will be converted to "1" and "false" will be converted to "0".
In the case of an item array, (NodeCount greater than 1), each element is separated by one character of space code. For example, let's assume the SML message below.
{
<u2 333 444 555>
}
To read out this u2 item, specicy "1" in Node.
.Node = "1"
When read out, a character string as shown below will return.
"333 444 555"
If we only wish to read out specific elements of the array, specify the index using [].
.Node = "1[1]"
When this is read, the specific elements only will return, as shown below.
"444"
Syntax
Return Value
Example
Remarks
Read-only property
See Also
NodeValueHex Property
|