extendedTypeNum Function

Retrieves the ID of the specified extended data type.


int extendedTypeNum(int str)

Parameter

Description

str

The extended data type for which to return the ID.

The ID of the specified extended data type.

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: