API Time.GetMonthDays

From Flowcode Help
Revision as of 16:15, 12 November 2013 by JonnyW (talk | contribs) (XML import for latest API)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


<sidebar>API Contents</sidebar> Returns the number of days in the given month

Class hierarchy

Time

GetMonthDays

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

BOOL

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