I want to add a subPathItem to a path without deleting and recreating the path. Is it possible?
Or do I have to recreate the whole thing like this :
1. read points from the path I want to edit
2. delete it
3. create a new array in javascript
4. pass the array to the pathitems.add() method
Sorry for asking such a basic question but I didn't find a straight answer in the scripting manual or google
Thank you for your time
Is it possible to add subpathItems to a existing pathItem?
Is it possible to add subpathItems to a existing pathItem?
You can not edit a path or subpath. All you can do is delete the whole path. So yes if you want to edit an existing path you must create a new one using some of the existing path data and replace the existing path with the newly created one.
Is it possible to add subpathItems to a existing pathItem?
Thank you for your quick reply