- Code: Select all
<w:tr w:rsidR="00AA41E9" w:rsidTr="00F878C1">
<w:trPr>
<w:trHeight w:val="1134"/>
</w:trPr>
<w:sdt>
<w:sdtPr>
<w:rPr>
<w:rFonts w:cstheme="minorHAnsi"/>
<w:color w:val="262626" w:themeColor="text1" w:themeTint="D9"/>
<w:sz w:val="24"/>
<w:szCs w:val="24"/>
</w:rPr>
<w:alias w:val="body text"/>
<w:tag w:val="body text tag"/>
<w:id w:val="18840786"/>
<w:lock w:val="sdtLocked"/>
<w:placeholder>
<w:docPart w:val="2F1DC445ACB14427BC44DC52DC2EB9DD"/>
</w:placeholder>
<w:showingPlcHdr/>
</w:sdtPr>
<w:sdtContent>
<w:tc>
<w:tcPr>
....
And I'm getting the <w:tr> node's children with the following code:
- Code: Select all
childElements = ((Tr) element).getEGContentCellContent();
but my childElements list doesn't have the <w:sdt> node in it. I'm pretty new to this so can anyone help me see what the issue is here?