Difference between revisions of "CalendarView.EditEvent"

From Jeremie Leroy - XOJO Controls Wiki
Jump to: navigation, search
m (1 revision)
m (1 revision)
Line 7: Line 7:
 
| platform=all
 
| platform=all
 
| newinversion=
 
| newinversion=
 +
| version=1.1.0
 
}}
 
}}
  
Line 15: Line 16:
  
 
Deleting an event can be handled here by calling:
 
Deleting an event can be handled here by calling:
<source>
+
<rbcode>
 
me.RemoveEvent(cEvent, True)
 
me.RemoveEvent(cEvent, True)
 
Return Nil
 
Return Nil
</source>
+
</rbcode>

Revision as of 17:32, 2 May 2012

Event
CalendarView.EditEvent ( cEvent As CalendarEvent ) As CalendarEvent


A CalendarEvent has been double-clicked in order to edit it. Editing a CalendarEvent must be handled here. If Nil is returned the CalendarEvent is not changed.

Deleting an event can be handled here by calling: <rbcode> me.RemoveEvent(cEvent, True) Return Nil </rbcode>