The GetObjectParam method returns the value of the specified parameter of the system object at the moment of method invocation.

Syntax for method invocation:

 function GetObjectParam(objtype : String, id : String, param : String) : String

Method arguments:

  1. objtype is a required argument. It specifies the type of system object for which you want to return the value of the specified parameter. Possible values: String type, range is limited by object types registered in the system.
  2. id is a required argument. It corresponds to the identification (registration) number of the object specified by the objtype argument. Possible values: String type, the range is limited by the identification numbers of objects of the specified type registered in the system.
  3. param is a required argument. It corresponds to the name of the parameter the value of which you want to return. Possible values: String type, range is limited by the parameters available for the given object.

Example. See the example in The SetObjectParam method.