elNumberStyles Enumeration
A flag-type enum that specifies an EasyLanguage number style the determines how a value is displayed. Referenced by the Parse and TryParse methods in the build-in EL ValueType classes.
The Allow[xxx[ values can be added together to specify multiple styles in a single return value, such as:
Styles = AllowLeadingWhite + AllowTrailingWhite + AllowLeadingSign ;
Namespace: elsystem
Enumerated Values
Name |
Value |
|
![]() |
AllowCurrencySymbol | 256 |
![]() |
AllowDecimalPoint | 32 |
![]() |
AllowHexSpecifier | 512 |
![]() |
AllowLeadingSign | 4 |
![]() |
AllowLeadingWhite | 1 |
![]() |
AllowParentheses | 16 |
![]() |
AllowThousands | 64 |
![]() |
AllowTrailingSign | 8 |
![]() |
AllowTrailingWhite | 2 |
![]() |
Any | 511 |
![]() |
Currency | 383 |
![]() |
Float | 167 |
![]() |
HexNumber | 515 |
![]() |
Integer | 7 |
![]() |
None | 0 |
![]() |
Number | 111 |