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

Constructor to create an object given all the contents.

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

Syntax

C#
public RecurrenceInfo(
	Periodicity pPeriod,
	int pDailyCount,
	bool pIsDailyWeekday,
	int pWeeklyCount,
	ArrayList pWeekday,
	bool pIsMonthlyDayBasis,
	int pMonthlyDayNum,
	int pMonthlyDayMonthNum,
	int pMonthlyWeekCount,
	int pMonthlyWeekDay,
	int pMonthlyWeekMonthNum,
	bool pIsYearlyMonthBasis,
	int pYearlyMonth,
	int pYearlyDay,
	int pYearlyWeekCount,
	int pYearlyWeekDay,
	int pYearlyWeekMonth,
	bool pIsRangeEndByDate,
	int pRangeOccurrencesCount,
	DateTime pRangeEndByDate
)
Visual Basic (Declaration)
Public Sub New ( _
	pPeriod As Periodicity, _
	pDailyCount As Integer, _
	pIsDailyWeekday As Boolean, _
	pWeeklyCount As Integer, _
	pWeekday As ArrayList, _
	pIsMonthlyDayBasis As Boolean, _
	pMonthlyDayNum As Integer, _
	pMonthlyDayMonthNum As Integer, _
	pMonthlyWeekCount As Integer, _
	pMonthlyWeekDay As Integer, _
	pMonthlyWeekMonthNum As Integer, _
	pIsYearlyMonthBasis As Boolean, _
	pYearlyMonth As Integer, _
	pYearlyDay As Integer, _
	pYearlyWeekCount As Integer, _
	pYearlyWeekDay As Integer, _
	pYearlyWeekMonth As Integer, _
	pIsRangeEndByDate As Boolean, _
	pRangeOccurrencesCount As Integer, _
	pRangeEndByDate As DateTime _
)
Visual C++
public:
RecurrenceInfo(
	Periodicity pPeriod, 
	int pDailyCount, 
	bool pIsDailyWeekday, 
	int pWeeklyCount, 
	ArrayList^ pWeekday, 
	bool pIsMonthlyDayBasis, 
	int pMonthlyDayNum, 
	int pMonthlyDayMonthNum, 
	int pMonthlyWeekCount, 
	int pMonthlyWeekDay, 
	int pMonthlyWeekMonthNum, 
	bool pIsYearlyMonthBasis, 
	int pYearlyMonth, 
	int pYearlyDay, 
	int pYearlyWeekCount, 
	int pYearlyWeekDay, 
	int pYearlyWeekMonth, 
	bool pIsRangeEndByDate, 
	int pRangeOccurrencesCount, 
	DateTime pRangeEndByDate
)

Parameters

pPeriod
Type: OfficeClip.Utils..::.Periodicity
The period of Recurrence.
pDailyCount
Type: System..::.Int32
The daily count.
pIsDailyWeekday
Type: System..::.Boolean
Shows if the daily restricted only to the weekedays.
pWeeklyCount
Type: System..::.Int32
The weekly count.
pWeekday
Type: System.Collections..::.ArrayList
The day of the week.
pIsMonthlyDayBasis
Type: System..::.Boolean
Shows if the monthly Recurrence on the basis of a particular day.
pMonthlyDayNum
Type: System..::.Int32
The monthly Recurrence day number.
pMonthlyDayMonthNum
Type: System..::.Int32
The month number for the monthly Recurrence on daily basis.
pMonthlyWeekCount
Type: System..::.Int32
The week of the month for monthly Recurrence.
pMonthlyWeekDay
Type: System..::.Int32
The day of the week for monthly Recurrence.
pMonthlyWeekMonthNum
Type: System..::.Int32
The monthly Recurrence month number.
pIsYearlyMonthBasis
Type: System..::.Boolean
Shows if the yearly Recurrence is on monthly basis.
pYearlyMonth
Type: System..::.Int32
The month for the yearly Recurrence.
pYearlyDay
Type: System..::.Int32
The day for the yearly Recurrence.
pYearlyWeekCount
Type: System..::.Int32
Yearly Recurrence week count.
pYearlyWeekDay
Type: System..::.Int32
Yearly Recurrence week day.
pYearlyWeekMonth
Type: System..::.Int32
Yearly Recurrence week month.
pIsRangeEndByDate
Type: System..::.Boolean
Shows if the range is selected by the End By date.
pRangeOccurrencesCount
Type: System..::.Int32
The occurence count for the range.
pRangeEndByDate
Type: System..::.DateTime
The range end by date.

See Also