"smallDecimalPoint"

If "smallDecimalPoint" is TRUE, the decimal point will be drawn between two digit positions. Otherwise it occupies a digit position of its own, that is, it is drawn in a digit position.

Synopsis

setValue(string shape,"smallDecimalPoint",bool m);

getValue(string shape,"smallDecimalPoint",bool &m);

shape.smallDecimalPoint(bool m);

Parameter

Parameter Description
shape Name of the object
m

TRUE = The decimal point is drawn between two digit positions.

FALSE = The decimal point is drawn in a digit position.

Description

If "smallDecimalPoint" is TRUE, the decimal point is drawn between two digit positions. Otherwise it occupies a digit position of its own, that is, it is drawn in a digit position.

Example

The following example draws the decimal point between two digit positions.

main(bool enter)
{
  LCD1.smallDecimalPoint(TRUE); 
}

Assignment

LCD number