| | 2 | Resets the previous net weight so the next call to IsNetWtChanged will return true. |
| | 3 | |
| | 4 | {{{ |
| | 5 | void ResetPrevNetWt(void); |
| | 6 | |
| | 7 | void ResetPrevNetWt(int nScale); |
| | 8 | }}} |
| | 9 | |
| | 10 | == Parameters == |
| | 11 | |
| | 12 | * nScale - scale to reset |
| | 13 | |
| | 14 | Version with no parameter will reset all scales. |
| | 15 | |
| | 16 | == Return Value == |
| | 17 | |
| | 18 | This function does not return any result. |
| | 19 | |
| | 20 | == Remarks == |
| | 21 | |
| | 22 | |
| | 23 | == Examples == |
| | 24 | |
| | 25 | {{{ |
| | 26 | // After clearing a menu display reset the previous gross weight so the net weight will be redrawn right away |
| | 27 | ResetPrevNetWt(); |
| | 28 | }}} |
| | 29 | |
| | 30 | |
| | 31 | == See Also == |
| | 32 | |
| | 33 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/IsNetWtChanged IsNetWtChanged] |
| | 34 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevGrossWt ResetPrevGrossWt] |
| | 35 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevTareWt ResetPrevTareWt] |
| | 36 | |