CalendarView constructor

CalendarView(
  1. DateTime startDate,
  2. DateTime endDate
)
Initializes a new instance of CalendarView. The start date. The end date.

Implementation

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