Click or drag to resize

FormatOutput Method

Outputs the specified value.

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

Parameters

value  Double
The value for formatting.

Return Value

String
The formatted text string for specified value.

JavaScript
var myFormat = Utility.CreateFormat({decimals:3, trim:false, forceSign:true});
myFormat.Output(4.5); // returns "+4.500"

See Also