Difference between revisions of "API Time.GetMonthDays"
From Flowcode Help
Jump to navigationJump to search (XML import for latest API)  | 
				 (XML import)  | 
				||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
<sidebar>API Contents</sidebar>  | <sidebar>API Contents</sidebar>  | ||
Returns the number of days in the given month  | Returns the number of days in the given month  | ||
Revision as of 15:58, 16 January 2014
<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