getprop
getprop — returns a property value for a symbol.
getprop (symbol, property)
symbolA symbol.
propertyA symbol naming the property to be fetched.
The value of the property for the given symbol, or nil if the property is not defined.
Return the value of the property for the given symbol. Once a property has been set for a symbol, it will remain as long as the Gamma program is running.
Gamma>tag001 = 5.5;5.5Gamma>setprop(#tag001, #maxlimit,10);nilGamma>getprop(#tag001, #maxlimit);10Gamma>getprop(#tag001, #minlimit);nilGamma>