|
|
|
|
|
- Range selection
- Changing a time period in a Calendar, Organizer or Scheduler control
- Special cases
EndDate (Property) In french: DateFin
NbJour is int
NbJour = DateDifference(CAL_Calendrier1.DateDébut, ...
CAL_Calendrier1.DateFin) + 1
Info("Période sélectionnée : du " + ...
DateToString(CAL_Calendrier1.DateDébut) + ...
" au " + DateToString(CAL_Calendrier1.DateFin) + ...
" soit " + NbJour + " jours")
Syntax
Getting the end of the date range Hide the details
<End date> = <Control used>.EndDate
Changing the end of the date range Hide the details
<Control used>.EndDate = <New date>
Remarks Changing a time period in a Calendar, Organizer or Scheduler control To change the start date of a selected time period, specify the start date ( StartDate property) and the end date ( EndDate property). When the start date changes: - the end date is automatically deselected.
- the end date has to be selected (programmatically or by clicking a control date).
To modify the end date of a selected period, simply use the EndDate property: the period is automatically modified..
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|