company logo

out - Output parameter

When a variable is being used as parameter, the out option can be set to indicate, that this parameter is considered as output parameter, which will return information to the caller. Pure output parameters need not to be initialized, since the value passed will be ignored. When in and out is set at the same time, the parameter is considered as input parameter in addition, i.e. the passed information may influence the function result.

Notes:

This information is used for documentation purposes, mainly.

Type: logical