wiki:Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetBelowZero

GetBelowZero

Get below zero status.

bool GetBelowZero(int nScale = process_scale)

Parameters

  • nScale - scale number

Return Value

  • Returns true if the specified scale weight is below zero or false if the weight is zero or above.

Remarks

The value returned is from an internal memory buffer from the last MnBdRead that received a weight for the specified scale. An application program should be structured properly for this data to be updated when needed.

Examples

if(GetBelowZero())
{
    DisplayText(20, 20, "Below Zero");
}
if(GetBelowZero(1))
{
    DisplayText(20, 20, "Below Zero");
}

See Also

Last modified 7 years ago Last modified on 04/12/18 12:47:55
Note: See TracWiki for help on using the wiki.