nameOf
| Syntax |
nameOf (value)
|
| Params |
value is a database object whose name you wish to determine.
|
| Action |
Determines the name of the specified object.
|
| Returns |
A string containing the name of the object.
|
| Examples |
nameOf (examples.testText) » "testText"
nameOf (examples.["newItem"])
Note that it returns a name even though the object doesn't exist.
x = {'font': "Geneva"}; nameOf (x [1])
See Notes. |
| Notes |
The nameOf verb can also be used to determine the key of an item in a record value.
|