Daysinyear()

Returns the number of days in the year of the given date object (taking into account of leap years)

Usage

NUMERIC = Daysinyear( date )
Argument Summary
date date

Calling

Supports named-parameter calling allowing you to use the function like:

Daysinyear(
   date=?
);

Supports passing parameters as a structure using ArgumentCollection:

Daysinyear( ArgumentCollection={
   date : ?
} );