|
|
|
|
|
- Range selection
- Changing a time period in a Calendar, Organizer or Scheduler control
- Special cases
StartDate (Property) In french: DateDébut
The StartDate property is used to determine and change the start date of the selected time period: - in a Calendar control.
  in a Scheduler control.
NbDays is int
NbDays = DateDifference(CAL_Calendar1.StartDate, CAL_Calendar1.EndDate) + 1
Info("Selected period: from " + ...
DateToString(CAL_Calendar1.StartDate) + ...
" to " + DateToString(CAL_Calendar1.EndDate) + ...
" which means " + NbDays + " days")
Syntax
Determining the start date of the time period Hide the details
<Start date> = <Control used>.StartDate
Changing the start date of the time period Hide the details
<Control used>.StartDate = <New date>
<Control used>: Control name Name of the control used:- Calendar control,
  Scheduler control.
<New date>: Character string or Date variable Start date of the time period to be selected in the control. - In a Calendar control, this date is in "YYYYMMDD" format.
Remarks Range selection To select a time range: - in a Calendar control, " Range selection" must be selected in the "Details" tab.
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 property EndDate: the period is automatically modified..
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|