| | 1 | = FormatGrossWt = |
| | 2 | Format a string representation of the gross weight |
| | 3 | |
| | 4 | {{{ |
| | 5 | string FormatGrossWt(int nScale = process_scale, int len = 7); |
| | 6 | |
| | 7 | char* FormatGrossWt(int nScale = process_scale, char* pszBuffer, int len = 7); |
| | 8 | }}} |
| | 9 | |
| | 10 | == Parameters == |
| | 11 | |
| | 12 | * nScale - scale number |
| | 13 | * len - length to format the string, spaces will be padded to the left. |
| | 14 | |
| | 15 | == Return Value == |
| | 16 | |
| | 17 | * Returns the string formatted weight. |
| | 18 | |
| | 19 | == Remarks == |
| | 20 | |
| | 21 | == Examples == |
| | 22 | |
| | 23 | {{{ |
| | 24 | }}} |
| | 25 | |
| | 26 | {{{ |
| | 27 | }}} |
| | 28 | |
| | 29 | == See Also == |
| | 30 | |
| | 31 | * GetGrossWt |
| | 32 | * FormatTareWt |