Returns the underlying numeric value of the enumeration member.
Return type: INT64
Access: PUBLIC FINAL
Applies to: Progress.Lang.Enum class
ENUM Range:
DEFINE ENUM MIN = 255
MAX = 2147483647.
END NUM.
|
DEFINE VARIABLE ix AS INT64 NO-UNDO. IF ix < Range:MIN:GetValue() OR ix > Range:MAX:GetValue() THEN ... |