You can break any multipart object into its parts:
- Regions will produce new Region objects with one polygon per object. Optionally, holes (interior boundaries) of the original object can be retained as a hole in the result object. Otherwise, a hole will produce a separate, single (solid) polygon region.
- Polylines will produce new Polyline objects with one single segment polyline per object.
- Multipoint objects will produce Point objects, with one new Point object produced for each node in the Multipoint.
- Collections will be recursively broken up. If a Collection contains a Region, then that Region will be broken up into multiple Region objects as noted above. If the Collection contains a Polyline, then it will be broken up into multiple Polyline objects as noted above. If the Collection contains a Multipoint, then it will be broken up into Point objects as noted above.
- All other object types, including Points, Lines, Arcs, Rectangles, Rounded Rectangles, and Ellipses, will remain unchanged.
Note: The style of the output objects will be derived from the style of the input object.