CreateDate()

Creates a CFML date object from the given year, month and day

Usage

DATE = CreateDate( year, month, day )
Argument Summary
year year
month month (1-12)
day day

Calling

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

CreateDate(
   year=?, 
   month=?, 
   day=?
);

Supports passing parameters as a structure using ArgumentCollection:

CreateDate( ArgumentCollection={
   year : ?, 
   month : ?, 
   day : ?
} );