dayLightSaving()

The method checks whether it is winter or summer time.

Synopsis

bool time.daylightsaving();

Description

The method checks whether it is winter or summer time. The method returns "true"; for summer time and "false"; for winter time.

Return Value

The information whether it is summer (TRUE) or winter time (FALSE).

Example

main()
{
  time t = getCurrentTime();
  DebugN("Is it winter (FALSE) or summer time(TRUE):", t.daylightsaving());
}

Assignment

Time function

Availability

UI,CTRL