Difference between revisions of "CalendarView.DisplayDate"

From Jeremie Leroy - XOJO Controls Wiki
Jump to: navigation, search
m (1 revision)
m (100 revisions imported)
 
(92 intermediate revisions by 2 users not shown)
Line 9: Line 9:
  
  
The currently displayed Date.Change the DisplayDate to change the current view.==Notes==If you assign a date using<rbcode>me.DisplayDate = aDate</rbcode>There is no need to refresh the CalendarView to show the selected date.However if you alter DisplayDate without assigning it a value, the CalendarView needs to be refreshed:<rbcode>//Change the month to Decemberme.DisplayDate.Month = 12me.Redisplay() //This refreshes the CalendarView</rbcode>
+
 
 +
The currently displayed Date.
 +
Change the [[CalendarView.DisplayDate|DisplayDate]] to change the current view.
 +
==Notes==
 +
If you assign a date using
 +
<source lang="realbasic">
 +
me.DisplayDate = aDate
 +
</source>
 +
There is no need to refresh the CalendarView to show the selected date.
 +
However if you alter DisplayDate without assigning it a value, the CalendarView needs to be refreshed:

Latest revision as of 14:20, 6 August 2015

Property (As Date)
aCalendarView.DisplayDate = newValue
or
DateValue = aCalendarView.DisplayDate


The currently displayed Date. Change the DisplayDate to change the current view.

Notes

If you assign a date using

me.DisplayDate = aDate

There is no need to refresh the CalendarView to show the selected date. However if you alter DisplayDate without assigning it a value, the CalendarView needs to be refreshed: