|
| |
SetParam() Function
Sets the specified parameter of a control. Syntax:
SetParam(id,param,value) SetParam(id,param,value,exact)
Parameters:
| id | - Control Identifier to assign parameter value to.
| | param | - Parameter name to set.
| | value | - Value to set.
| | value | - If set to 1, the parameter is set to the exact value with no variable substitution.
|
Remarks:
- SetParam() with the caption parameter does not update the displayed caption. If you need to update the caption, use the SetCaption() funtion instead.
- Setting the value parameter, eg: SetParam(id,"value",value) is identical to the SetValue() function.
- The value can contain variables such as %URL%.
- CR/LF and TAB characters can be included as \n, \r and \t
- The exact parameter is optional. If set to a value of 1, variables will not be substituted.
Compatibility
The exact parameter is supported from version 2.4.1
See Also:
|