datetime
The datetime structure. An object of the datetime type is used to work with time. This type can contain information about date and time.
type datetime
{
ushort year
ushort month
ushort dayofweek
ushort day
ushort hour
ushort minute
ushort second
ushort msec
}
{
ushort year
ushort month
ushort dayofweek
ushort day
ushort hour
ushort minute
ushort second
ushort msec
}
Members
year | Year. |
month | Month. |
dayofweek | Weekday. Counted from 0. 0 is Sunday, 1 is Monday... |
day | Day. |
hour | Hours. |
minute | Minutes. |
second | Seconds. |
msec | Milliseconds. |
Related links | Source |