"showTime"
Shows or hides the time.
Synopsis
setValue(string shape, "showTime", bool mode);
getValue(string shape, "showTime", bool &mode);
shape.showTime(bool mode);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
mode |
TRUE = Shows the time FALSE = Hides the time |
Description
Shows or hides the time.
The time can only be hidden together with the date.
Example
The following example hides the date and the time.
main()
{
CLOCK1.showDate(FALSE);
CLOCK1.showTime(FALSE);
}
Assignment
Clock