A .NET library that simplifies working with OpenXML documents. Create, read, and manipulate Wordprocessing documents (DOCX), Excel spreadsheets (XLSX), and PowerPoint presentations (PPTX) effortlessly with Openize.OpenXML SDK. Licensed under MIT.
$ dotnet add package Openize.OpenXML-SDKOpenize.OpenXML-SDK for .NET is a powerful and easy-to-use wrapper around the OpenXML SDK, enabling developers to work seamlessly with Wordprocessing documents (Docx), Excel spreadsheets (Xlsx), and PowerPoint presentations (Pptx) in their .NET applications.
This project is licensed under the MIT License, so you can freely use it in your projects. To include Openize.OpenXML-SDK for .NET in your application, simply clone the repository or add the library to your project via NuGet.
var document = new Openize.Words.Document();
document.Save("word.docx");
Console.WriteLine("Empty word document created !!!");
var workbook = new Openize.Cells.Workbook();
workbook.Save("excel.xlsx");
Console.WriteLine("Empty excel document created !!!");
var presentation = Openize.Slides.Presentation.Create("powerpoint.pptx");
presentation.AppendSlide(new Openize.Slides.Slide());
presentation.Save();
Console.WriteLine("Empty Presentation document created !!!");
Contributions are welcome! Please fork the repository and submit a pull request. For significant changes, please open an issue first to discuss what you would like to contribute.
This project is licensed under the MIT License. See the LICENSE file for details.