daySecond()

The method returns the seconds of a day.

Synopsis

int time.daySecond();

Description

Returns the seconds of the day (0 ...86399 since 00:00) of a time t.

Return Value

The seconds of a day.

Example

main()
{
  time t = getCurrentTime();
  DebugN("Second of the day:", t.daySecond());
}

Assignment

Time function

Availability

UI,CTRL