Returns a string containing a textual representation of value.
stringValue ( value As Any ) As String
| Argument | Type | Description |
|---|---|---|
| value | Any | The value to be represented as a string ; permitted to be NoValue . |
Intent >stringValue(sin(30.0)) -->"0.500"
Intent >stringValue(self()) --> "Block<04CB2CF0>"
Intent >stringValue({{"a", "b", "c", "d"}, {"e", "f", "g", "h"}})
--> "List of 2"