Next Previous Up Top Contents Index

1 CAPI Reference Entries

remove-capi-object-property

Function

Summary

Theremove-capi-object-property function removes properties from the property list of an object.
Syntax

remove-capi-object-property object property

Description

All CAPI objects contain a property list, similar to the symbolplist. The functionscapi-object-property and(setf capi-object-property) are the recommended ways of setting properties, andremove-capi-object-property is the way to remove a property.
Example

(setq pane (make-instance 'capi:list-panel
                          :items '(1 2 3)))

(capi:capi-object-property pane 'test-property) (setf (capi:capi-object-property pane 'test-property) "Test")

(capi:capi-object-property pane 'test-property) (capi:remove-capi-object-property pane 'test-property) (capi:capi-object-property pane 'test-property)
See also

capi-object-property
capi-object

LispWorks CAPI Reference Manual - 17 Oct 1998

Next Previous Up Top Contents Index

Generated with Harlequin WebMaker