Enum TrailingZeroesMode
The enumeration defines how to output trailing insignificant zeroes (after decimal point) for numbers: don't output, output all zeroes or output only one first zero after decimal point.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public enum TrailingZeroesMode
Fields
Name | Description |
---|---|
No | With "No" option the trailing zeroes will not be output at all. For example: "10.", "10.73", "10.999". |
OneOnly | With "OneOnly" option only one first trailing zero will be output. For example: "10.0", "10.73", "10.999". |
Yes | With "Yes" option the all trailing zeroes will be output anyway. For example: "10.000", "10.730", "10.999". |