setprops
setprops — lists the most recent property value settings.
setprops (symbol, properties)
symbolThe symbol whose properties will be listed.
propertiesAny property.
A list of properties with their most recent values, as associated pairs.
This function is used to get a list of all the properties and their associated values as (name . value) pairs. It is called using any of the symbol's properties. The list contains current values in order from the most to least recently entered.
The symbol and property are
normally protected from evaluation when setting properties, using the
# operator.
Gamma>setprop(#weight,#hilimit,1000);nilGamma>setprop(#weight,#lowlimit,500);nilGamma>setprop(#weight,#warning,950);nilGamma>setprop(#weight,#warning,975);950Gamma>setprops(#weight,#hilimit);((warning . 975) (lowlimit . 500) (hilimit . 1000))Gamma>