extendedTypeNum Function

Retrieves the ID for an extended data type.


int extendedTypeNum(int str)

Parameter

Description

str

The extended data type to return the ID for.

The ID for str.

static void EDTNum(Args _args)
{
    int i;
    str s;
    ;
 
    i = extendedTypeNum(AccountName);
    s = extendedTypeStr(AccountName);
    print  int2Str(i);
    print  s;
    pause;
}

Community Additions

ADD
Show: