Difference between revisions of "NXSL:classof"
(Created page with "__NOTOC__ Returns the class name for given object. == Syntax == classof(''object''); == Parameters == :{| |- | ''object'' || Object to get class name for. |} == Return...") |
m (Text replacement - "^" to "{{deprecated}}") |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | {{deprecated}}__NOTOC__ | ||
Returns the class name for given object. | Returns the class name for given object. | ||
Line 10: | Line 10: | ||
== Parameters == | == Parameters == | ||
:{| | :{| class="wikitable" | ||
|- | |- | ||
| ''object'' || Object to get class name for. | | ''object'' || Object to get class name for. |
Latest revision as of 16:13, 13 September 2022
This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide) |
Returns the class name for given object.
Syntax
classof(object);
Parameters
object Object to get class name for.
Return Value
Object's class name. If parameter passed to this function is not an object, runtime error will be generated.
Examples
classof($node) -> "Node"