setSG
setSG(g_obj g_value S_prop) =>g_propValue
Description
Evaluates and then sets the value for the specified attribute or property. It is a lambda implementation of setSGq().
Arguments
|
Specifies the name of the attribute or property for which you want to set the value |
Value Returned
Examples
In the following example, setSG() evaluates the tbl_list argument and then sets its value.
tbl_list = list( (Table 'a nil)
Table( 'b nil)
Table( 'c nil))
setSG( tbl_list 41 'x)
=> '(41 41 41)
Related Topics
Return to top