Cicode Programming Reference > Cicode Function Categories > Time and Date Functions Introduction > TimeHour

TimeHour

Gets the hour value from a time/date variable.

Time/date functions can only be used with dates from 1980 to 2035. You should check that the date you are using is valid with Cicode similar to the following:

IF StrToDate(Arg1)>0 THEN
...
ELSE
...
END

Syntax

TimeHour(Time)

Time:

The time/date variable.

Return Value

The hour (as an integer).

Related Functions

TimeCurrent

Example

! If the current system time is 11:43:10 a.m.;
HoursVariable=TimeHour(TimeCurrent());
! Sets HoursVariable to 11.

See Also

Time/Date Functions