Monthasstring()

Returns the string label for the given month index in the given locale (if supplied)

Usage

STRING = Monthasstring( month, locale )
Argument Summary
month month number - (1=Jan .. 12=Dec)
locale locale [optional]

Calling

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

Monthasstring(
   month=?, 
   locale=?
);

Supports passing parameters as a structure using ArgumentCollection:

Monthasstring( ArgumentCollection={
   month : ?, 
   locale : ?
} );