Difference between revisions of "CalendarEvent.SetLength"

From Jeremie Leroy - XOJO Controls Wiki
Jump to: navigation, search
m (1 revision)
Line 6: Line 6:
 
| parameters=Value As Double
 
| parameters=Value As Double
 
| returntype=
 
| returntype=
 +
| version=1.0.1
 
| platform=all
 
| platform=all
 
}}
 
}}
Line 14: Line 15:
  
 
This code will set the length of the Event to 2 hours
 
This code will set the length of the Event to 2 hours
<source>
+
<rbcode>
 
me.SetLength(2*60*60)
 
me.SetLength(2*60*60)
</source>
+
</rbcode>

Revision as of 17:32, 2 May 2012

Method
CalendarEvent.SetLength ( Value As Double )


Set the length (in seconds) of the CalendarEvent

This code will set the length of the Event to 2 hours <rbcode> me.SetLength(2*60*60) </rbcode>