✦ Next-gen document automation
Floating Document Framework
Pure .NET, zero Office dependencies, and a floating DOM model. Generate complex Word documents with an API that feels like magic – but delivers enterprise-grade control.
⚡ 100% .NET managed
📄 20+ document elements
🌍 Cross-platform
var doc = new WordDocument();
doc.AddText("Hello, World!");
doc.Save("HelloWorld.docx");
What makes different?
We threw away the complexity of OpenXML SDK. gives you a floating DOM – you build the document structure without worrying about XML relationships, compatibility, or Microsoft Word Interop.
Floating DOM
Mirrors Word's object model
Mirrors Word's object model
Native charts & shapes
No image hacks
No image hacks
Convertible foundation
HTML, PDF, Excel ready
HTML, PDF, Excel ready
For developers, by developers
- Generate tables, images, headers, footers
- Advanced styling: borders, gradients, text effects
- Object tree logging for debugging
- Lightweight, no third-party deps
// Position an image with precision
var img = doc.AddParagraph().AddImage("receipt.jpg");
img.Transform.Position = new Position {
X = DocumentUnit.FromInches(1),
Y = DocumentUnit.FromInches(1.5)
};
doc.Tables[0].Rows[0].Cells[0].Text = "Floating content";
Perfect for real-world workflows
📑 Invoices & reports
📄 Contract generation
⚙️ Enterprise APIs
📨 Template-based mailing