|
|
|
|
OrganizerPosition (Function) In french: AgendaPosition Displays an Organizer control from a specified date or returns the date of the first day (or the date of the last day) displayed in an Organizer control.
// Position the Organizer control on today's date OrganizerPosition(ORG_Organizer1, Today()) // Position the Organizer control on December 20, 2012 OrganizerPosition(ORG_Organizer1, "20121220")
// Find out the first date displayed in the Organizer control OrganizerDate is Date OrganizerDate = OrganizerPosition(ORG_MyOrganizer)
Syntax
Position the Organizer control on a specified date Hide the details
OrganizerPosition(<Organizer control> , <Start date>)
<Organizer control>: Control name Name of the Organizer control to be used. This control can correspond to: an Organizer control in a window. - an Organizer control in a report.
<Start date>: Character string or Date variable Start date for the display.
Finding out the first date or the last date displayed by the Organizer control Hide the details
<Result> = OrganizerPosition(<Organizer control> , <Sought date>)
<Result>: Character string or Date variable Date displayed by the Organizer control. <Organizer control>: Control name Name of the Organizer control to be used. This control can correspond to: an Organizer control in a window. - an Organizer control in a report.
<Sought date>: Optional Integer constant Type of sought date: | | orgCurrentMonth | First day of the month displayed in the Organizer control. | New in version 28orgDateTimeFirstVisible | First date and time displayed in the Organizer control (depending on the position of the scrollbar). | orgEndDate | Last date displayed in the Organizer control. | orgStartDate (Default value) | First date displayed in the Organizer control. |
Remark: If the Organizer control is displayed in "per day" mode, the orgStartDate and orgEndDate constants are equivalent.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|