Timeformat()

Formats a time string to a given output

Usage

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

Calling

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

Timeformat(
   date=?, 
   format=?
);

Supports passing parameters as a structure using ArgumentCollection:

Timeformat( ArgumentCollection={
   date : ?, 
   format : ?
} );