Previous Topic: RetrieveValueNext Topic: SetKey


return

return

Returns a Boolean, string or nothing from a function.

Example:
MyFunction()
{
     /* do something */
     return;
     /* this never happens */
}