HourOfTheMonth
Calculate the number of hours passed since the start of the month.
Declaration
Source position: dateutil.inc line 192
function HourOfTheMonth(const AValue: TDateTime) : Word;
Description
HourOfTheMonth returns the number of hours that have passed since the start of the month till the moment indicated by AValue. This is a zero-based number, i.e. 00:59:59 on the first day of the month will return 0.
For an example, see the WeekOfTheMonth function.
See also
Name | Description |
---|---|
DayOfTheMonth | Extract the day (of month) part of a TDateTime value |
MilliSecondOfTheMonth | Calculate number of milliseconds elapsed since the start of the month. |
MinuteOfTheMonth | Calculate number of minutes elapsed since the start of the month. |
SecondOfTheMonth | Calculate number of seconds elapsed since the start of the month. |
WeekOfTheMonth | Extract the week of the month (and optionally month and year) from a TDateTime value |