top of page
- API -

errorCode = AZ_GetErrorCode()

- API Detail-


▼Output value

errorCode: 0: Success/Other than 0: Failure

- SCRIPT -

import sys

sys.path.append(RPR_GetResourcePath() + r"\UserPlugins")

from AZSTOKE_BRONZE_python import *

from RIGDOCKS_python import *


def Msg(parm):

RPR_ShowConsoleMsg(str(parm) + "\n")

_,_, allCount,typeCount = AZ_GetMediaTypeCount(0, "", 0, 0)

Msg(typeCount)


errorCode = AZ_GetErrorCode()

Msg(errorCode)

ERROR

AZ_GetErrorCode

Supported versions:

1.0.3

onwards

Gets the error code of the last API executed.

bottom of page