Hello,
I'm creating openings to some walls with a PythonPart. I get the BaseElementAdapter for each wall and I then create the opening element with AllplanArchElements.GeneralOpeningElement(...). To create such an element in Allplan, I call the following function AllplanBaseElements.CreateElements:
CreateElements(doc:NemAll_Python_IFW_ElementAdapter.DocumentAdapter, insertionMat:NemAll_Python_Geometry.Matrix3D, modelEleList:list, modelUuidList:list, assoRefObj:object, appendReinfPosNr:bool=True, createUndoStep:bool=True) -> NemAll_Python_IFW_ElementAdapter.BaseElementAdapterList
I tried to attach attributes to the GeneralOpeningElement, but as it happens in the issue [Question][PythonParts]How do I attach custom attributes to a Wall?, I cannot attach attributes directly to the ArchElement.
Following the response to the aforementioned issue, from the BaseElementAdapterList returned by AllplanBaseElements.CreateElements() I get the niche's BaseElementAdapter and attach the attributes like this:
attr_list = BuildingElementAttributeList() attr_list.add_attribute(1083, "HOLE") AllplanBaseElements.ElementsAttributeService.ChangeAttributes( attr_list.get_attributes_list_as_tuples(), niche_adapters)
This is the way that it currently works to attach attributes to openings. However, when creating a new opening, if this is in contact with some other openings previously created, the attributes of the last created opening are transferred to the other openings, making these lose their attributes. If the openings are not really in contact, but from the Plan view they are, it also applies the issue.
I have attached an image with an example where this happens: 2nd replaces 1st's attributes, 3rd replaces 2nd's attributes and 4th replaces 2nd's and 3rd's attributes.
Can someone help me?
Thank you.