| 2 | Checks whether the formatted gross weight is different from the last time IsGrossWtChanged was called. |
| 3 | |
| 4 | {{{ |
| 5 | bool IsGrossWtChanged(int nScale, int nLen = 7); |
| 6 | }}} |
| 7 | |
| 8 | == Parameters == |
| 9 | |
| 10 | * nScale - scale number |
| 11 | * nLen - length to format the weight |
| 12 | |
| 13 | == Return Value == |
| 14 | |
| 15 | * Returns true if the formatted gross weight of the specified scale is changed, or false if the formatted weight is the same as the last time IsGrossWtChanged was called. |
| 16 | |
| 17 | == Remarks == |
| 18 | |
| 19 | |
| 20 | == Examples == |
| 21 | |
| 22 | {{{ |
| 23 | if(IsGrossWtChanged(1)) |
| 24 | { |
| 25 | DisplayText(0, 0, GetChangedGrossWt(1)); |
| 26 | } |
| 27 | }}} |
| 28 | |
| 29 | |
| 30 | == See Also == |
| 31 | |
| 32 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetChangedGrossWt GetChangedGrossWt] |
| 33 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsTareWtChanged IsTareWtChanged] |
| 34 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsNetWtChanged IsNetWtChanged] |