Torque3D Documentation / _generateds / EngineEnumTable::Value

EngineEnumTable::Value

Engine/source/console/engineTypeInfo.h

A value in an enumeration.

More...

Public Attributes

const char *

Documentation string.

Integer value.

const char *

Name of the value.

Public Functions

const char *

Return the documentation string of this enum value.

Return the integer value of this enum value.

const char *

Return the name of this enum value.

Detailed Description

A value in an enumeration.

The order of the fields in this structure is important as it is meant to be initialized with { ... } in code.

Public Attributes

const char * mDocString 

Documentation string.

S32 mInt 

Integer value.

If the enumeration is a bit field, this is the bit value.

const char * mName 

Name of the value.

Public Functions

getDocString()

Return the documentation string of this enum value.

getInt()

Return the integer value of this enum value.

getName()

Return the name of this enum value.

operator S32()