Cjustify()

Returns the given string justified to the center, padding out the words with spaces accordingly

Usage

STRING = Cjustify( string, length )
Argument Summary
string string
length length of line

Calling

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

Cjustify(
   string=?, 
   length=?
);

Supports passing parameters as a structure using ArgumentCollection:

Cjustify( ArgumentCollection={
   string : ?, 
   length : ?
} );