View Single Post
  #2  
Old 10-19-2018, 04:09 AM
johrndorf's Avatar
johrndorf johrndorf is offline
Registered User
 
Join Date: Jun 2006
Posts: 14
Re: delete part info

To show what info is attached to the contents of part:

(display (oli::sd-inq-item-attributes (oli::sd-pathname-to-obj "/assembly/part_xy") :attachment :contents))
If you want to know the in attached to the instance, you must replace :contents by :instance.


To remove a block of info:
(sd-detach-item-attribute (oli::sd-pathname-to-obj "/assembly/part_xy") "name of info" :attachment :contents)


You will find more details on this commands in the IKIT documentation.
Reply With Quote