ENDPARAMS

End parameter list

WSupported on Windows
USupported on Unix
VSupported on OpenVMS
NSupported in Synergy .NET
ENDPARAMS

ENDPARAMS is an optional keyword that can be added to the end of any parameter list to indicate the list is terminating. If ENDPARAMS is not used, the first declaration that is not a parameter declaration terminates the parameter list.

The example below explicitly terminates the parameter list after parm2.

public method meth1, void
    parm1       ,int
    parm2       ,int
    endparams
proc
end