Setting the height of a structured document tag in aspose java

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.

@Sri_Harsha I am afraid there is no way to specify height of SDT neither using MS Word nor using Aspose.Words. SDT grows according to it’s content.

@alexey.noskov If we have an empty row then how to set the Minimum height to that row it is possible in WORD so has to be possible also in aspose.

@Sri_Harsha You can specify table row height using RowFormat.Height and RowFormat.HeightRule properties.