The view demonstrates the use of Drag&Drop between components. On the right side a template structure can be administered and from it elements can be inserted into the factory plan on the left side using drag&drop. The elements of the factory plan can also be rearranged using drag&drop. In doing so, the user receives corresponding feedback as to where which elements can be inserted.

In the corresponding example model, factories can consist of floors and floors can consist of workstations. In the drag&drop operation, floors can only be placed in factories and workstations can only be placed within floors.
The burger menu of the template library contains an import command that can be used to import library elements from an XML structure. This functionality demonstrates the configurable XML import. If you save the following structure to a file, you can use it to create library elements in the template library via the import:
<items>
<factory name="F1">
<floor name="Ebene 0">
<location name="Raum1">
<entry name="Robot 1"/>
</location>
</floor>
</factory>
<floor name="Ebene">
<location name="Raum A">
<Entry name="Robot 1"/>
</location>
<location name="Raum B">
<Entry name="Robot 2"/>
</location>
</floor>
</items>