CalendarView.withMaxItemsReturned constructor

CalendarView.withMaxItemsReturned(
  1. DateTime startDate,
  2. DateTime endDate,
  3. int maxItemsReturned
)
Initializes a new instance of CalendarView. The start date. The end date. The maximum number of items the search operation should return.

Implementation

CalendarView.withMaxItemsReturned(
    DateTime startDate, DateTime endDate, int maxItemsReturned)
    : super() {
  this._startDate = startDate;
  this._endDate = endDate;
  this.MaxItemsReturned = maxItemsReturned;
}