Hi,
I want to set the height of the StructuredDocumentTag for a repeating section using aspose java and the code I am using is:
StructuredDocumentTag newSection = (StructuredDocumentTag) repeaterTemplate.deepClone(true);
compositeParent.insertBefore(newSection, repeaterTemplate);
Here the composite parent is,
CompositeNode<?> compositeParent = repeaterTemplate.getParentNode();
I am also calling my method by passing newSection in it. I am unable to find a method for setting height to a structured document tag can any one help me with it?
Thanks in advance.