GetMonth Function

public function GetMonth(time) result(month)

Gets the month of the datetime represented by this instance

Arguments

Type IntentOptional Attributes Name
type(DateTime), intent(in) :: time

Return Value integer(kind=short)


Source Code

FUNCTION  GetMonth &
!
(time) &
!
RESULT (month)

IMPLICIT NONE

! Arguments with intent(in):
TYPE (DateTime), INTENT(IN) :: time

! Local variables:
INTEGER (KIND = short) :: month

!------------end of declaration------------------------------------------------

month = time % month

END FUNCTION GetMonth