Difference between revisions of "NXSL:classof"

From NetXMS Wiki
Jump to navigation Jump to search
m (Text replacement - "^" to "{{deprecated}}")
 
Line 1: Line 1:
__NOTOC__
{{deprecated}}__NOTOC__
Returns the class name for given object.
Returns the class name for given object.



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"