Click or drag to resize

NumWordOpts Enumeration

Options for converting numbers to words using the NumToWords(IAppContext, Int32, NumWordOpts) method.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum NumWordOpts
Members
  Member nameValueDescription
NoSeparators1Do not include standard separators between number parts (e.g. comma in English).
NoTerminalAnd2Do not include a terminal AND (as in English 'one hundred twenty-seven thousand AND thirty-one').
UseNonTerminalAnds4Do include non-terminal ANDs (as in English 'one hundred AND twenty-seven thousand and thirty-one').
TitleCase8Use title case (e.g. 'Twenty-Three' instead of 'twenty-three').
UseAbsoluteValue16If negative, return the words for the corresponding positive number.
See Also