Previous Topic: FileExistsNext Topic: GENERAL


function

Function

Declares any function and must appear before a General function name. A function must be defined before it is called from within the script. Only General commands (not Store or Apply commands) can occur in this function.

Usage:
function <function name> ( )
{
   // do something
}
Example:
function MyStoreFunction()
{
  //do something
}