Difference between revisions of "API Time.GetMonthDays"
From Flowcode Help
Jump to navigationJump to search (XML import for latest API) |
(No difference)
|
Revision as of 16:15, 12 November 2013
<sidebar>API Contents</sidebar>
Returns the number of days in the given month
Contents
Parameters
LONG Year
- The year the month is in
ULONG Month
- The month to find the number of days of
ULONG Prior
- Returns the number of days leading up to the given month in the given year
- This parameter is returned back to the caller
Return value
Returns the number of days in the given month
Detailed description
No additional information
Examples
Calling in a calculation
- Declare a variable 'result' of type BOOL
- Add to a calculation icon:
result = ::Time.GetMonthDays(year, month, return_prior)
No additional examples