"showDate"

Shows or hides the date.

Synopsis

setValue(string shape, "showDate", bool mode);

getValue(string shape, "showDate", bool &mode);

shape.showDate(bool mode);

Parameters

Parameter Description
shape Name of the object
mode

TRUE = Shows the date

FALSE = Hides the date

Description

Shows or hides the date.

Example

The following example hides the date.

main()
{
  CLOCK1.showDate(FALSE);
}

Assignment

Clock