classIdGet Function

Retrieves the numeric identifier (the class ID) for the class of which the object is an instantiation.


int classIdGet(class object)

Parameter

Description

object

The object to get the class ID for.

The class ID for the object.

static void classIdGetExample(Args _args)
{
    int i;
    WorkTimeCheck w;
    ;
    i = classIdGet(w);
    print "Class ID for object is " + int2Str(i);
    pause;
}

Community Additions

ADD
Show: