Segregates a set of elements into subsets which are
valid for merge.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 23.0.0.0 (23.1.0.0)
Since:
2013
Syntax
Visual Basic |
---|
Public Shared Function FindMergeableClusters ( _
doc As Document, _
partIds As ICollection(Of ElementId) _
) As IList(Of ICollection(Of ElementId)) |
Visual C++ |
---|
public:
static IList<ICollection<ElementId^>^>^ FindMergeableClusters(
Document^ doc,
ICollection<ElementId^>^ partIds
) |
Return Value
An array of clusters such that all the elements in a single cluster
are valid for merge. Each cluster will be maximal in that appending
any of the other Parts specified as input will result in a collection
that is not valid for merge.
Remarks
Exceptions
See Also