IsByRef() [v1.1.01+]

Returns a non-zero number if the specified ByRef parameter was supplied with a variable.

Boolean := IsByRef(ParameterVar)

Parameters

ParameterVar

A reference to the variable. For example: IsByRef(MyParameter).

Return Value

This function returns 1 (true) if ParameterVar is a ByRef parameter and the caller supplied a variable; or 0 (false) if ParameterVar is any other kind of variable.

ByRef parameters

Examples

Reports 1 (true) because Param is a ByRef parameter and was supplied with a variable.

MsgBox, % Function(MyVar)

Function(ByRef Param)
{
    return IsByRef(Param)
}