Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have merged some parts with this code.
var findParts = PartUtils.FindMergeableClusters(Doc, PartIDs);
findParts.ToList().ForEach(p =>
{
if (p.Count == 1) return;
PartUtils.CreateMergedPart(Doc, p);
});
But output of 'PartUtils.CreateMergedPart' is not a Part. It's a 'PartMaker'
I need a part output.
Is there any way to get a merged part object?
Thank you.
Solved! Go to Solution.