This is the official DOCX plugin for ZPE.
The plugin provides support for creating, reading and modifying .docx files directly from ZPE.
Place zpe.lib.docx.jar in your ZPE native-plugins folder and restart ZPE.
You can also download with the ZULE Package Manager by using:
zpe --zule install zpe.lib.docx.jar
Full documentation, examples and API reference are available here:
View the complete documentation
import "zpe.lib.docx"
d = new docx()
d->new_file()
d->add_heading("My Document", 1)
d->add_paragraph("Hello from ZPE!")
d->save("output.docx")
d->close()
- This plugin supports .docx files only.
- Requires Apache POI (bundled within the plugin).