@Time
Syntax
@Time(YEAR1;MONTH2;DAY3;HOUR4;MINUTE5;SECOND6);
@Time(HOUR4;MINUTE5;SECOND6);
Description
Composes a time-date value TD from the individual values FN YEAR1/MONTH2/DAY3/HOUR4/MINUTE5/SECOND6 and returns it.
NOTE:
@Time in the Engine differs slightly from the Notes-@Function @Time!
The @Time(TD1) usage possible in Notes is not implemented in the Engine and must therefore be emulated, if needed, using the expression @Time(@Hour(TD1);@Minute(TD1);@Second(TD1)).
Example: @Time(YEAR1;MONTH2;DAY3;HOUR4;MINUTE5;SECOND6)
YEAR1:=1993;
MONTH2:=9;
DAY3:=30;
HOUR4:=9;
MINUTE5:=30;
SECOND6:=0;
@Time(YEAR1;MONTH2;DAY3;HOUR4;MINUTE5;SECOND6);
returns [30.09.93 09:30:00]
Example: @Time(HOUR4;MINUTE5;SECOND6)
HOUR4:=10;
MINUTE5:=15;
SECOND6:=45;
@Time(YEAR1;MONTH2;DAY3;HOUR4;MINUTE5;SECOND6);
returns, for example [10:15:45]
Note : This text was machine-translated and may contain inaccuracies.
