[This is preliminary documentation and is subject to change.]

Gets the first/second/third/forth/last Monday/Tuesday... of a month from the first day of the month for the date specified.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static DateTime GetDayOfMonth(
	string week,
	int weekDay,
	int month,
	int year,
	int timeMin
)
Visual Basic (Declaration)
Public Shared Function GetDayOfMonth ( _
	week As String, _
	weekDay As Integer, _
	month As Integer, _
	year As Integer, _
	timeMin As Integer _
) As DateTime
Visual C++
public:
static DateTime GetDayOfMonth(
	String^ week, 
	int weekDay, 
	int month, 
	int year, 
	int timeMin
)

Parameters

week
Type: System..::.String
For which week - legal values are first, second, third, forth or last
weekDay
Type: System..::.Int32
The day of the week legal values are 0(Sunday) to 6(Saturday)
month
Type: System..::.Int32
The month in question
year
Type: System..::.Int32
The year in question
timeMin
Type: System..::.Int32
The time past midnight

Return Value

See Also