Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetInterval


Ignore:
Timestamp:
08/20/10 13:18:15 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v1  
     1= GetInterval =
     2Get the interval of the specified scale.
     3
     4{{{
     5uint8 GetInterval(int nScale);
     6}}}
     7
     8== Parameters ==
     9
     10 * nScale - scale number
     11
     12== Return Value ==
     13
     14 * Returns the interval of the specified scale
     15
     16== Remarks ==
     17
     18MnBdStartup must be performed before this will return a valid result.
     19
     20== Example ==
     21
     22{{{
     23uint8 nIntv;
     24nIntv = GetInterval(1);
     25string strMsg = StrFmt("Scale interval %d", nIntv);
     26DisplayText(10, 10, strMsg);
     27}}}
     28
     29
     30== See Also ==
     31
     32 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetDecimal GetDecimal]
     33 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetCapacity GetCapacity]
     34