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

Returns a DataTable that contains the monthly view of the month for the selected date

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

Syntax

C#
public static DataTable GetMonthlyView(
	DateTime selDate,
	bool includeDayHeader,
	DayOfWeek weekStartDay
)
Visual Basic (Declaration)
Public Shared Function GetMonthlyView ( _
	selDate As DateTime, _
	includeDayHeader As Boolean, _
	weekStartDay As DayOfWeek _
) As DataTable
Visual C++
public:
static DataTable^ GetMonthlyView(
	DateTime selDate, 
	bool includeDayHeader, 
	DayOfWeek weekStartDay
)

Parameters

selDate
Type: System..::.DateTime
The date for which the monthly view is supposed to be displayed
includeDayHeader
Type: System..::.Boolean
Whether the day header is supposed to be included. The day headers are three letter representation of the day of the week.
weekStartDay
Type: System..::.DayOfWeek
The week start day

Return Value

A DataTable consisting of the following parts, id - set to an unavailable constant, Dt - Set the minimum date value, Desc - the Description of the date.

See Also