[Date->AM] is an accessor for getting or setting the AM/PM field for a date object.
Getting uses no parameters and returns boolean true if the date is AM, otherwise false.
Setting requires a boolean parameter, and supports the = operator. If set to true, then the date is converted to AM. Conversely if set to false, then the date is converted to PM. Setting modifies the date object in-place, but does not return a value.
Date Object->am
Date Object->am=Boolean
Use the [Date->AM] method. The following example uses a single date object, then tests whether the date is AM, and returns true.
Next we set the AM field to a new value using the = operator. We return the result for the set operation.
Code
local(d) = date('2011-02-01 08:00:00')
#d->am + '<br>'
#d->AM=false
#d
Result
true 2011-02-01 20:00:00
Please note that periodically LassoSoft will go through the notes and may incorporate information from them into the documentation. Any submission here gives LassoSoft a non-exclusive license and will be made available in various formats to the Lasso community.
©LassoSoft Inc 2015 | Web Development by Treefrog Inc | Privacy | Legal terms and Shipping | Contact LassoSoft
Recent Comments