Defines Number format.
Namespace: Spire.Doc.DocumentsAssembly: Spire.Doc (in Spire.Doc.dll) Version: 9.6.1.0 (9.6.1.3020)
Syntax
| C# | Visual Basic | Visual C++ | F# |
public enum NumberFormat
Public Enumeration NumberFormat
public enum class NumberFormat
type NumberFormat
Members
| Member | Value | Description |
|---|---|---|
| None | 0 |
No formatting
|
| WholeNumber | 1 |
Format with while number.
|
| FloatingPoint | 2 |
Format with floating point number.
|
| WholeNumberPercent | 3 |
Whole number in percents.
|
| FloatingPointPercent | 4 |
Floating point number in percents.
|
| WholeNumberWithSpace | 5 |
Format which suits to "#?#0" Word format.
|
| FloatingPointWithSpace | 6 |
Format which suites to "#?#0,00" Word format.
|
| CurrencyFormat | 7 |
Format which suites to "#?#0,00 $;(#?#0,00 $)" Word format.
|