API Time.GetMonthDays

From Flowcode Help
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