Deleting 'noteText' from symbol

D

dinac

Guest
Hi all,

Trying to delete the 'noteText' of 'symbol view' for all cells in a
library.

I tried to check check the objType (geGetSelectedSet()), but it says
'label'.
How do I differentiate this label from 'noteText' and use
dbDeleteObject.

Thanks a lot.

cheers
Dinac
 
Thanks all. solved it.
This works, hope I have done it right.
------------------------------------------------------------------------
foreach(shapes cvID~>shapes
when((shapes~>objType=="label" && shapes~>layerName=="text")
dbDeleteObject(shapes)
) ;when
) ;foreach

Thanks again

cheers
Dinac
 

Welcome to EDABoard.com

Sponsor

Back
Top