Difference between revisions of "CalendarEvent.SetLength"

From Jeremie Leroy - XOJO Controls Wiki
Jump to: navigation, search
m (78 revisions imported)
 
(28 intermediate revisions by 2 users not shown)
Line 6: Line 6:
 
| parameters=Value As Double
 
| parameters=Value As Double
 
| returntype=
 
| returntype=
| version=1.0.1
+
| version=1.2.2
 
| platform=all
 
| platform=all
 
}}
 
}}
Line 16: Line 16:
 
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>
 
<source>
me.[[CalendarEvent.SetLength|SetLength]](2*60*60)
+
me.SetLength(2*60*60)
 
</source>
 
</source>

Latest revision as of 14:20, 6 August 2015

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

Invalid language.

You need to specify a language like this: <source lang="html4strict">...</source>

Supported languages for syntax highlighting:

[Expand]


me.SetLength(2*60*60)