Share via


DictEnum.configurationKeyId Method

Definition

Returns the configuration key ID for the enumeration.

public:
 virtual int configurationKeyId();
public virtual int configurationKeyId ();
abstract member configurationKeyId : unit -> int
override this.configurationKeyId : unit -> int
Public Overridable Function configurationKeyId () As Integer

Returns

The configuration key ID for the enumeration; 0 (zero) if there is no configuration key ID for the enumeration.

Remarks

The following example shows the retrieval of the configuration key ID for an enumeration.

DictEnum de; 
int      i; 
de = new DictEnum(enumName2Id("ActionType")); 
print int2str(de.configurationKeyId());

Applies to