Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of the Object class.
Syntax
public void new(EnumId typeId)
Run On
Called
Parameters
- typeId
Type: EnumId Extended Data Type
The ID of the enumeration.
Remarks
The constructor does not fail if an invalid enum ID is supplied. However, when the DictEnum instance is used, a run-time error occurs. Note that EnumID values are unsigned integers and are therefore always in the range 0–65535.
Examples
The following example creates an instance of the DictEnum class.
DictEnum de;
de = new DictEnum(enumName2Id("ActionType"));