hi,
I use face-based family template and try to create void extrusion and cut host solid in API.
When I create void extrusion and cut it with "SolidSolidCutUtils" from the base solid, I got exception:
The element must be in a project document or in a conceptual model, pattern based curtain panel, or adaptive component family. -or- The element does not meet the condition that it must be solid and must be a GenericForm, GeomCombination, or a FamilyInstance.
in the UI,I could create void extrusion and cut base.
How can I do it in API?
Now, I tried this code.
// The procedure what I want do is
// 1, open "face-based"family template
// 2, create void extrusion
// 3, cut face-base with void extrusion
//open face-based family template.
//create void extrusion.
Element eCut;
Element eFace;
FilteredElementCollector coll = new FilteredElementCollector (doc);
// at here, there are 2 elements and get collect elements
foreach(Element element in coll.OfClass(typeof(GenericForm)).toElementIds())
{
if("void extrusion".Equals(element.Name))
{
eCut = element;
}
if("extrusion".Equals(element.Name))
{
eFace = element;
}
}
//I got exception
SolidSolidCutUtils.AddCutBetweenSolid(doc, eFace, eCut);