Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsTareWtChanged


Ignore:
Timestamp:
08/21/10 09:27:25 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsTareWtChanged

    v1 v2  
    11= IsTareWtChanged =
     2Checks whether the formatted tare weight is different from the last time IsTareWtChanged was called.
     3
     4{{{
     5bool IsTareWtChanged(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 tare weight of the specified scale is changed, or false if the formatted weight is the same as the last time IsTareWtChanged was called.
     16
     17== Remarks ==
     18
     19
     20== Examples ==
     21
     22{{{
     23if(IsTareWtChanged(1))
     24{
     25    DisplayText(0, 0, GetChangedTareWt(1));
     26}
     27}}}
     28
     29
     30== See Also ==
     31
     32 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetChangedTareWt GetChangedTareWt]
     33 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/ResetPrevTareWt ResetPrevTareWt]
     34 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsTareWtChanged IsTareWtChanged]
     35 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsNetWtChanged IsNetWtChanged]