system.date.getDate

Description

Creates a new Date object given a year, month and a day. The time will be set to midnight of that day.

Syntax

system.date.getDate (year, month, day )

  • Parameters

Int year - The year for the new date.

Int month - The month of the new date. January is month 0.

Int day - The day of the month for the new date. The first day of the month is day 1.

  • Returns

Date - A new date, set to midnight of that day.

  • Scope

All

Code Examples
Code Snippet
#This example will create a new date object set to January 1st, 2017.
date = system.date.getDate(2017, 0, 1)
print date