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

Public property AllowCurrencySymbol 256
Public property AllowDecimalPoint 32
Public property AllowHexSpecifier 512
Public property AllowLeadingSign 4
Public property AllowLeadingWhite 1
Public property AllowParentheses 16
Public property AllowThousands 64
Public property AllowTrailingSign 8
Public property AllowTrailingWhite 2
Public property Any 511
Public property Currency 383
Public property Float 167
Public property HexNumber 515
Public property Integer 7
Public property None 0
Public property Number 111