DateFormat()

Formats a date string to a given output

Usage

STRING = DateFormat( date, mask )
Argument Summary
date date1
mask format string; short cuts ('short', 'medium', 'long', 'full') or customized string [optional]

Calling

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

DateFormat(
   date=?, 
   mask=?
);

Supports passing parameters as a structure using ArgumentCollection:

DateFormat( ArgumentCollection={
   date : ?, 
   mask : ?
} );