Click or drag to resize

Format Interface

Represents the Format object. It defines the formatting of codes output to the NC file.

Namespace: Woodwork.Automation
Assembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 2.1.25
Syntax
public interface Format

The Format type exposes the following members.

Properties
 NameDescription
Public propertyDecimals Gets or sets the number digits to the right of the decimal point to output.
Public propertyForceDecimal Gets or sets decimal point appearance. When set to true the decimal point will always be included with the formatted number. false will remove the decimal point for integer values.
Public propertyForceSign Gets or sets sign appearance. When set to true will force the output of a plus (+) sign on positive numbers.
Public propertyOffset Gets or sets the number to add to the value prior to formatting it for output.
Public propertyPrefix Gets or sets the prefix of the output value as a text string.
Public propertyScale Gets or sets the scale factor to multiply the value by prior to formatting it for output.
Public propertySeparator Gets or sets the character to use as the decimal point. The default is '.'
Public propertySuffix Gets or sets the suffix of the output value as a text string.
Public propertyTrim Gets or sets the trailing zeros appearance. When set to true the trailing zeros will be trimmed from the right of the decimal point.
Public propertyTrimLeadZero Gets or sets the trim of lead zero. When set to true will trim the lead zero from a floating-point number if the number is fractional, e.g. .123 instead of 0.123
Public propertyWidth Gets or sets the minimum width of the output string.
Public propertyZeropad Gets or sets zeros appearance. When set to true will fill the beginning of the output string with zeros to match the specified width.
Top
Methods
 NameDescription
Public methodOutput Outputs the specified value.
Top
See Also