CalendarSelectDate method (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
Select the given date within the calendar.
Get Syntax
CalendarSelectDate (int year, int month, int day)
Part | Description |
year | Must be an integer in the range 0001-9999. |
month | Must be an integer in the range 01-12. |
day | Must be an integer in the range 01-31. |
Remarks
This method only has a Get Syntax.
Note: In Calendar components, this value is set using the
Calendar Settings dialog box.
Example for Component Objects
Sub Main() ThisForm.Components("calendar").CalendarSelectDate(2014,3,18) End Sub