Ucase()

Returns the upper cased version of the string

Usage

STRING = Ucase( string )
Argument Summary
string string

Calling

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

Ucase(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Ucase( ArgumentCollection={
   string : ?
} );