0

How does one create a checkbox within a docx document with NPOI? I have seen example where it is done with POI in Java, but not in the .Net version.

Here is the Java example: Work with checkboxes in docx file with Apache POI

braX
  • 11,506
  • 5
  • 20
  • 33
IceCode
  • 1,466
  • 13
  • 22

1 Answers1

0

I went with the Open Xml Sdk library instead of NPOI. It supports the creation of form checkboxes.

Open Xml Sdk documentation start: https://learn.microsoft.com/en-us/office/open-xml/open-xml-sdk

Checkbox documentation: https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.wordprocessing.checkbox?view=openxml-2.8.1

IceCode
  • 1,466
  • 13
  • 22