Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The SetParam method assigns sets a value to the specified parameter of the MsgObject or Event object. It The method changes only the specified parameters of an object, leaving other parameters intactremain unchanged.

Method call syntaxSyntax for method invocation:

Code Block
languagejavascript
 function  SetParam(param : String,  value : String)

Method arguments:

  1. param - Required is a required argument. The name of It corresponds to the parameter name of the object created using MsgObject system object for which the MsgObject object (or of the Event static object) . It takes the following was created. Possible values:   Type – String type, range is limited by the parameters available parameters for the objects of the specified typegiven object.
  2. value - Required is a required argument. The It sets the value to be assigned to the parameter specified in the param argument. It takes the following Possible values:   Type – String type, range depends on the set parameter.

Usage examples

Example. See the example for the in GetParam method.