Hi.
I'm working on an add-in which creates several layout-elements, including a groupelement which contains some text and a scalebar. I'm able to add background / outline for each of the elements in the group, but not on the group itself. How do I do this? I can't see any methods or properties on the GroupElement-object, nor the CIM-definition.
Here's how I've created the GroupElement.
ElementInfo info = new ElementInfo();
info.CornerRounding = 25;
GroupElement groupElement = ElementFactory.Instance.CreateGroupElement(
elementContainer: Module1.layout,
elements: elementList,
elementName: "JSRMålestokkGruppe",
groupElementInfo: info
);
Can anyone help me with this and point me in the right direction?