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: 14.5.1+cea593b982d79fcd8924a2e3fdf7aefc7fb02118
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