...
Code Block | ||||
---|---|---|---|---|
| ||||
FUNCTION xpxPackDate (seconds, minutes, hours, |
...
day : INTEGER;
month, year : INTEGER;
VAR packedTimeAndDate : INTEGER)
status : INTEGER;
|
The function xpxPackDate converts the specified time and date to an integer representation. Dates from 1990 to 2054 can be represented. The integer representation of the time and date will be returned through the packedTimeAndDate argument
Arguments
...
1 | Type | Name | Comment |
2 | INTEGER | seconds | Seconds after the minute (0, 59) |
3 | INTEGER | minutes | Minutes after the hour (0, 59) |
4 | INTEGER | hours | Hours since midnight (0, 23) |
5 | INTEGER | day | Day of the month (1, 31) |
6 | INTEGER | month | Months since January (0, 11) |
7 | INTEGER | year | Years since 1900. |
8 | INTEGER | packedTimeAndDate | The integer representation of the time and date |
Return Value
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Options
...
Example
...
Code Block | ||
---|---|---|
| ||
<Missing Example> |
See also
Filter by label (Content by label) | ||||||
---|---|---|---|---|---|---|
|