We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When saving a document, the StdBlock elements must be saved as sdtPr, sdtEndPr, sdtContent as per the schema definition:
<complexType name="CT_SdtRow"> <sequence> <element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/> <element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/> <element name="sdtContent" type="CT_SdtContentRow" minOccurs="0" maxOccurs="1"/> </sequence> </complexType>
However NPOI is generating in the order sdtPr, sdtContent, sdtPr, sdtContent .
This results in validation failure with OPEN XML SDK 2.5 tool.
The text was updated successfully, but these errors were encountered:
5154700
Merge pull request #912 from PBrunot/master
506d949
fix #911
No branches or pull requests
When saving a document, the StdBlock elements must be saved as sdtPr, sdtEndPr, sdtContent as per the schema definition:
However NPOI is generating in the order sdtPr, sdtContent, sdtPr, sdtContent .
This results in validation failure with OPEN XML SDK 2.5 tool.
The text was updated successfully, but these errors were encountered: