DateUtils.WeekOfTheMonth

From RAD Studio VCL Reference
Jump to: navigation, search

Contents

Delphi Information

From DateUtils.pas

	function WeekOfTheMonth(const AValue: TDateTime): Word; overload;
 
	function WeekOfTheMonth(const AValue: TDateTime;
		var AYear: Word;
		var AMonth: Word): Word; overload;


Unit: DateUtils

Type: function

Visibility: public

C++ Information

From DateUtils.hpp

	unsigned short __fastcall WeekOfTheMonth(System::TDateTime AValue);


Unit: DateUtils

Type: function

Description

Returns the week of the month represented by a TDateTime value.


Call WeekOfTheMonth to obtain the week of the month represented by a specified TDateTime value. WeekOfTheMonth returns a value from 1 through 6.

AYear and AMonth return the year and month in which WeekOfTheMonth occurs. Note that these values may not be the same as the year and month of AValue. This is because the first week of a month is defined as the first week with four or more days in that month. Thus, if the first day of the month is a Friday, Saturday, or Sunday, the first one, two, or three days of the month are defined as belonging to the last week of the previous month. Similarly, if the last day of the month is a Monday, Tuesday, or Wednesday, then the last one, two, or three days of the month are defined as belonging to the first week of the next month.

Tip:  To count weeks based on the weekday of the date/time value, use the NthDayOfWeek function instead. For example, if AValue represents a Saturday that is the first day of a month, WeekOfTheMonth returns 5 (or maybe 4), indicating the last week of the previous month, while NthDayOfWeek returns 1 if AValue is the first Saturday in the month.
Note:  WeekOfTheMonth uses the ISO 8601 standard definition of a week. That is, a week is considered to start on a Monday and end on a Sunday.

See Also

Code Samples


Personal tools
Translations
Newest Version