Click or drag to resize

FormatOutput Method

Formats the specified numeric value according to this format's configuration and returns the resulting text string. The formatting process applies scaling, offsetting, decimal precision, sign display, zero padding, and prefix/suffix decoration.

Namespace: Woodwork.Automation
Assembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 10.2.1+e3fd5885edfa7211ba46258e0eed5ac221a54381
Syntax
string Output(
	double value
)

Parameters

value  Double
The numeric value to format.

Return Value

String
The formatted text string representing the input value according to this format's settings. For example, with decimals=3, trim=false, and forceSign=true, a value of 4.5 returns "+4.500".
See Also