enumStr Function

Retrieves the name of an enumeration as a string.


str enumStr(enum enum)

Parameter

Description

enum

The name of the enumeration.

The name of the enumeration.

static void enumStrExample(Args _args)
{
    str s;
    ;
    s = enumStr(ABC);
    print s;
    pause;
}

Community Additions

ADD
Show: