 | FormatOutput Method |
Outputs the specified value.
Namespace: Woodwork.AutomationAssembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 2.1.25
Syntaxstring Output(
double value
)
Function Output (
value As Double
) As String
Parameters
- value Double
- The value for formatting.
Return Value
String
The formatted text string for specified value.
var myFormat = Utility.CreateFormat({decimals:3, trim:false, forceSign:true});
myFormat.Output(4.5);
See Also