Code Monkey home page Code Monkey logo

simpledocument.openxml's Introduction

SimpleDocument

A simple .NET library for writing to a Microsoft Word document.

Notes

  • Since the writer class is performing operations in memory, I do NOT recommend using this code to produce large Word files.
  • This has not been released as a NuGet project because it is a work in progress.
  • Requires the use of Microsoft's OpenXML library: DocumentFormat.OpenXML

Example

// Create the writer
var writer = new SimpleDocumentWriter();

// Add a paragraph and adjust its style
var paragraph = writer.ParagraphHelper.AddToBody("This is a good report!");
writer.ParagraphHelper.ApplyStyle(paragraph, SimpleDocumentParagraphStylesEnum.H1);
writer.ParagraphHelper.ApplyJustitification(paragraph, JustificationValues.Center);

// Add a bullet list
List<string> fruitList = new List<string>() { "Apple", "Banana", "Carrot"};
writer.NumberedListHelper.AddList(fruitList);
writer.ParagraphHelper.AddToBody("This is a spacing paragraph 1.");

// Add a numbered list 1, 2, 3
List<string> animalList = new List<string>() { "Dog", "Cat", "Bear" };
writer.NumberedListHelper.AddList(animalList);
writer.ParagraphHelper.AddToBody("This is a spacing paragraph 2.");

// Add an image
using (FileStream fs = new FileStream("C:\\temp\\picture1.jpg", FileMode.Open))
{
	writer.ImageHelper.AddImage(fs);
}

writer.ParagraphHelper.AddToBody(String.Format("This is a spacing paragraph {0}.", pictureNumber));

// Add a paragraph and adjust its style
var addParagraph = writer.ParagraphHelper.AddToBody("Done.");
writer.ParagraphHelper.ApplyStyle(addParagraph, SimpleDocumentParagraphStylesEnum.H1);

// Save the document to a file
writer.SaveToFile("C:\\temp\\Example.docx");

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.