How can I get the layers that a diagram element belongs to in DCTL XML code. We can get the Diagram a component belongs to like this ( for example for all ArchiMateAssessment ).
<IterationBlock modelTypes="ArchiMateAssessment">
<ForEachOwnerDiagram diagramType="ArchiMateDiagram">
<Property property="name"/>
</ForEachOwnerDiagram>
</IterationBlock>
My requirement is to get the diagram name and the layer/s in the diagram that the element belongs to.
Thanks in advance.