Class NCWordDecPoint
The enumeration defines how to output decimal point for numbers: don't output, output for fractional numbers only or output it always for fractional and integer numbers.
Inheritance
object
NCWordDecPoint
Namespace: SprutCAMTech.SCPostprocessor
Assembly: SprutCAMTech.SCPostprocessor.dll
Syntax
public sealed class NCWordDecPoint : Enum
Fields
Always
With "Always" option the decimal point will be presented anyway both for integers and fractional numbers. For example: "X27.34", "X10.0".
Declaration
public const NCWordDecPoint Always = 2
Field Value
Type | Description |
---|---|
NCWordDecPoint |
No
With "No" option the decimal point will never output regardless of the presence of a fractional part. For example: "G54", "T0202".
Declaration
public const NCWordDecPoint No = 0
Field Value
Type | Description |
---|---|
NCWordDecPoint |
value__
Declaration
public int value__
Field Value
Type | Description |
---|---|
int |
Yes
Witn "Yes" option the decimal point will only be output if the number has a fractional part. For example: "X27.34", "X10".
Declaration
public const NCWordDecPoint Yes = 1
Field Value
Type | Description |
---|---|
NCWordDecPoint |