property Calendar.FitSelToView as Variant
Specifies the list of additional dates to be shown on the schedule view, when OnSelectDate property is exFitSelToView.

TypeDescription
Variant A single date or a safe array of dates to be included in the schedule chart when selection is changed.
By default, the FitSelToView property is empty. The FitSelToView property has effect only if the OnSelectDate property is exFitSelToView. The FitSelToView property specifies the list of additional dates (offset) to be included in the schedule view, when selection is changed. By default, the OnSelectDate property is exFitSelToView, which indicates that the selected date in the calendar panel, is enlarged so it fit the schedule view. For instance, your chart need to display not just the selected date, but to include also one day before and after, so you need to set the FitSelToView on Array(-1,1). Use the Selection property to select dates in the calendar panel.

The following VB samples ensures that the schedule-view displays at least 3 days ( a day before selected date, the selected date , and a day after the selected date ) when the user selects a date in the calendar panel:

With Schedule1.Calendar
    .OnSelectDate = exFitSelToView
    .FitSelToView = Array(-1, 1)
End With

In other words, use the FitSelToView property to specify the dates to be included in the schedule view when user changes the selection in the calendar panel.