5,317,598 members and growing! (25,007 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » Windows Presentation Foundation » General     Beginner License: The Code Project Open License (CPOL)

OpenXML + FlowDocument = OpenFlowDocument?

By rudigrobler

An article on how to render a Word document in a WPF FlowDocument control by parsing the OpenXML WordML using XLINQ
C# (C# 1.0, C# 2.0, C# 3.0, C#), Windows, Visual Studio, XAML, WPF, Dev

Posted: 9 Apr 2008
Updated: 9 Apr 2008
Views: 4,605
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
14 votes for this Article.
Popularity: 5.36 Rating: 4.68 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
1 vote, 20.0%
3
2 votes, 40.0%
4
2 votes, 40.0%
5

Introduction

OpenXML is a new standard used by all of Microsoft's new Office suites (Office 2007)! Because it is an open standard and based on XML, we can easily parse documents created with these products. The topic of this article will be how to parse a Word document (using XLINQ) and then render the document in a WPF control called the FlowDocument!

Parsing an OpenXML Document using XLINQ

System.IO.Packaging

The first problem is to extract or unpack the *.docx file into its containing *.xml files.

Package package = Package.Open(filename);
Uri documentUri = new Uri("/word/document.xml", UriKind.Relative);
PackagePart documentPart = package.GetPart(documentUri);
XElement wordDoc = XElement.Load(new StreamReader(documentPart.GetStream()));

The snippet above opens a Word document, extracts the document.xml into an XElement.

Using XLINQ to Get All the Paragraphs

All Word documents require the WordML namespace:

XNamespace w = http://schemas.openxmlformats.org/wordprocessingml/2006/main;

Now we can make a simple XLINQ query to get all the paragraphs (please note: to keep this simple, I am only looking at the paragraphs, I ignore images, drawings, tables, etc.).

var paragraphs = from p in wordDoc.Descendants(w + "p")
                 select p;

Next, we iterate over the collection of paragraphs and display them in a FlowDocument!

FlowDocument

Sacha has a nice article on the basics of FlowDocuments available here!

foreach (var p in paragraphs)
{
    var style = from s in p.Descendants(w + "pPr")
                select s;

    var font = (from f in style.Descendants(w + "rFonts")
                select f.FirstAttribute).FirstOrDefault();
    var size = (from s in style.Descendants(w + "sz")
                select s.FirstAttribute).FirstOrDefault();

    Paragraph par = new Paragraph();
    Run r = new Run(p.Value);
    if (font != null)
    {
        FontFamilyConverter converter = new FontFamilyConverter();
        r.FontFamily = (FontFamily)converter.ConvertFrom(font.Value);
    }
    if (size != null)
    {
        r.FontSize = double.Parse(size.Value);
    }
    par.Inlines.Add(r);

    flowDoc.Blocks.Add(par);
}

For each paragraph, I check if it has a font family or size explicitly set. I then create a new Paragraph and add a Run to its Inlines collection (I also change the font family and size if available). I then add the Paragraph to my FlowDocument!

And that is it!

All that is left now is to find a cool way to extend the normal FlowDocument to support Word document? You can sub-class the FlowDocument... I decided to rather provide it as an extension method!

To load a Word document into a flow document, you first create a FlowDocumentViewer (I created it in XAML):

<FlowDocumentPageViewer x:Name="flowDocViewer" Zoom="80" />

And load the Word document...

FlowDocument flowDoc = new FlowDocument();
flowDoc.loadWordML("DisciplesBios.docx");
flowDocViewer.Document = flowDoc;

I created a simple Word document with all the WPF Disciples bios. Here is how it looks in a FlowDocument:

OpenFlowDocScreen.jpg

Simple and easy...

If you like the article, please vote for it and also visit my blog: http://dotnet.org.za/rudi

History

  • 9th April, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

rudigrobler



Location: South Africa South Africa

Other popular Windows Presentation Foundation articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 2 of 2 (Total in Forum: 2) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralNicemvpKarl Shifflett10:05 25 Apr '08  
GeneralRe: Nicememberrudigrobler23:00 28 Apr '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 9 Apr 2008
Editor: Deeksha Shenoy
Copyright 2008 by rudigrobler
Everything else Copyright © CodeProject, 1999-2008
Web20 | Advertise on the Code Project