I
Ilyan
Is there any way of sorting items in Enum?
For example, let's take this declaration:
Enum SecurityLevel
IllegalEntry = -1
MinimumSecurity = 0
MaximumSecurity = 1
End Enum
When I type securityLevel and press dot, I want them to be displayed in the
order I declared them above, not alphabetically.
Thanks.
For example, let's take this declaration:
Enum SecurityLevel
IllegalEntry = -1
MinimumSecurity = 0
MaximumSecurity = 1
End Enum
When I type securityLevel and press dot, I want them to be displayed in the
order I declared them above, not alphabetically.
Thanks.