using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using System.Xml;
using System.IO;
using System.Text.RegularExpressions;
using System.IO.Packaging;
using System.Security.Cryptography;
namespace Novacode
{
///
/// Represents a document.
///
public class DocX : Container, IDisposable
{
#region Namespaces
static internal XNamespace w = "http://schemas.openxmlformats.org/wordprocessingml/2006/main";
static internal XNamespace rel = "http://schemas.openxmlformats.org/package/2006/relationships";
static internal XNamespace r = "http://schemas.openxmlformats.org/officeDocument/2006/relationships";
static internal XNamespace m = "http://schemas.openxmlformats.org/officeDocument/2006/math";
static internal XNamespace customPropertiesSchema = "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties";
static internal XNamespace customVTypesSchema = "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes";
static internal XNamespace wp = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing";
static internal XNamespace a = "http://schemas.openxmlformats.org/drawingml/2006/main";
static internal XNamespace c = "http://schemas.openxmlformats.org/drawingml/2006/chart";
#endregion
internal float getMarginAttribute(XName name)
{
XElement body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
XElement sectPr = body.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr != null)
{
XElement pgMar = sectPr.Element(XName.Get("pgMar", DocX.w.NamespaceName));
if (pgMar != null)
{
XAttribute top = pgMar.Attribute(name);
if (top != null)
{
float f;
if (float.TryParse(top.Value, out f))
return (int)(f / 15.0f);
}
}
}
return 0;
}
internal void setMarginAttribute(XName xName, float value)
{
XElement body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
XElement sectPr = body.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr != null)
{
XElement pgMar = sectPr.Element(XName.Get("pgMar", DocX.w.NamespaceName));
if (pgMar != null)
{
XAttribute top = pgMar.Attribute(xName);
if (top != null)
{
top.SetValue(value * 15);
}
}
}
}
public float MarginTop
{
get
{
return getMarginAttribute(XName.Get("top", DocX.w.NamespaceName));
}
set
{
setMarginAttribute(XName.Get("top", DocX.w.NamespaceName), value);
}
}
public float MarginBottom
{
get
{
return getMarginAttribute(XName.Get("bottom", DocX.w.NamespaceName));
}
set
{
setMarginAttribute(XName.Get("bottom", DocX.w.NamespaceName), value);
}
}
public float MarginLeft
{
get
{
return getMarginAttribute(XName.Get("left", DocX.w.NamespaceName));
}
set
{
setMarginAttribute(XName.Get("left", DocX.w.NamespaceName), value);
}
}
public float MarginRight
{
get
{
return getMarginAttribute(XName.Get("right", DocX.w.NamespaceName));
}
set
{
setMarginAttribute(XName.Get("right", DocX.w.NamespaceName), value);
}
}
public float PageWidth
{
get
{
XElement body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
XElement sectPr = body.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr != null)
{
XElement pgSz = sectPr.Element(XName.Get("pgSz", DocX.w.NamespaceName));
if (pgSz != null)
{
XAttribute w = pgSz.Attribute(XName.Get("w", DocX.w.NamespaceName));
if (w != null)
{
float f;
if (float.TryParse(w.Value, out f))
return (int)(f / 15.0f);
}
}
}
return (int)(11906.0f / 15.0f);
}
set
{
XElement body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
if (body != null)
{
XElement sectPr = body.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr != null)
{
XElement pgSz = sectPr.Element(XName.Get("pgSz", DocX.w.NamespaceName));
if (pgSz != null)
{
pgSz.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), value * 15);
}
}
}
}
}
public float PageHeight
{
get
{
XElement body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
XElement sectPr = body.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr != null)
{
XElement pgSz = sectPr.Element(XName.Get("pgSz", DocX.w.NamespaceName));
if (pgSz != null)
{
XAttribute w = pgSz.Attribute(XName.Get("h", DocX.w.NamespaceName));
if (w != null)
{
float f;
if (float.TryParse(w.Value, out f))
return (int)(f / 15.0f);
}
}
}
return (int)(16838.0f / 15.0f);
}
set
{
XElement body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
if (body != null)
{
XElement sectPr = body.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr != null)
{
XElement pgSz = sectPr.Element(XName.Get("pgSz", DocX.w.NamespaceName));
if (pgSz != null)
{
pgSz.SetAttributeValue(XName.Get("h", DocX.w.NamespaceName), value*15);
}
}
}
}
}
///
/// Returns true if any editing restrictions are imposed on this document.
///
///
///
/// // Create a new document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// if(document.isProtected)
/// Console.WriteLine("Protected");
/// else
/// Console.WriteLine("Not protected");
///
/// // Save the document.
/// document.Save();
/// }
///
///
///
///
///
public bool isProtected
{
get
{
return settings.Descendants(XName.Get("documentProtection", DocX.w.NamespaceName)).Count() > 0;
}
}
///
/// Returns the type of editing protection imposed on this document.
///
/// The type of editing protection imposed on this document.
///
///
/// Create a new document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Make sure the document is protected before checking the protection type.
/// if (document.isProtected)
/// {
/// EditRestrictions protection = document.GetProtectionType();
/// Console.WriteLine("Document is protected using " + protection.ToString());
/// }
///
/// else
/// Console.WriteLine("Document is not protected.");
///
/// // Save the document.
/// document.Save();
/// }
///
///
///
///
///
public EditRestrictions GetProtectionType()
{
if (isProtected)
{
XElement documentProtection = settings.Descendants(XName.Get("documentProtection", DocX.w.NamespaceName)).FirstOrDefault();
string edit_type = documentProtection.Attribute(XName.Get("edit", DocX.w.NamespaceName)).Value;
return (EditRestrictions)Enum.Parse(typeof(EditRestrictions), edit_type);
}
return EditRestrictions.none;
}
///
/// Add editing protection to this document.
///
/// The type of protection to add to this document.
///
///
/// // Create a new document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Allow no editing, only the adding of comment.
/// document.AddProtection(EditRestrictions.comments);
///
/// // Save the document.
/// document.Save();
/// }
///
///
///
///
///
public void AddProtection(EditRestrictions er)
{
// Call remove protection before adding a new protection element.
RemoveProtection();
if (er == EditRestrictions.none)
return;
XElement documentProtection = new XElement(XName.Get("documentProtection", DocX.w.NamespaceName));
documentProtection.Add(new XAttribute(XName.Get("edit", DocX.w.NamespaceName), er.ToString()));
documentProtection.Add(new XAttribute(XName.Get("enforcement", DocX.w.NamespaceName), "1"));
settings.Root.AddFirst(documentProtection);
}
///
/// Remove editing protection from this document.
///
///
///
/// // Create a new document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Remove any editing restrictions that are imposed on this document.
/// document.RemoveProtection();
///
/// // Save the document.
/// document.Save();
/// }
///
///
///
///
///
public void RemoveProtection()
{
// Remove every node of type documentProtection.
settings.Descendants(XName.Get("documentProtection", DocX.w.NamespaceName)).Remove();
}
public PageLayout PageLayout
{
get
{
XElement sectPr = Xml.Element(XName.Get("sectPr", DocX.w.NamespaceName));
if (sectPr == null)
{
Xml.SetElementValue(XName.Get("sectPr", DocX.w.NamespaceName), string.Empty);
sectPr = Xml.Element(XName.Get("sectPr", DocX.w.NamespaceName));
}
return new PageLayout(this, sectPr);
}
}
///
/// Returns a collection of Headers in this Document.
/// A document typically contains three Headers.
/// A default one (odd), one for the first page and one for even pages.
///
///
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add header support to this document.
/// document.AddHeaders();
///
/// // Get a collection of all headers in this document.
/// Headers headers = document.Headers;
///
/// // The header used for the first page of this document.
/// Header first = headers.first;
///
/// // The header used for odd pages of this document.
/// Header odd = headers.odd;
///
/// // The header used for even pages of this document.
/// Header even = headers.even;
/// }
///
///
public Headers Headers
{
get
{
return headers;
}
}
private Headers headers;
///
/// Returns a collection of Footers in this Document.
/// A document typically contains three Footers.
/// A default one (odd), one for the first page and one for even pages.
///
///
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add footer support to this document.
/// document.AddFooters();
///
/// // Get a collection of all footers in this document.
/// Footers footers = document.Footers;
///
/// // The footer used for the first page of this document.
/// Footer first = footers.first;
///
/// // The footer used for odd pages of this document.
/// Footer odd = footers.odd;
///
/// // The footer used for even pages of this document.
/// Footer even = footers.even;
/// }
///
///
public Footers Footers
{
get
{
return footers;
}
}
private Footers footers;
///
/// Should the Document use different Headers and Footers for odd and even pages?
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add header support to this document.
/// document.AddHeaders();
///
/// // Get a collection of all headers in this document.
/// Headers headers = document.Headers;
///
/// // The header used for odd pages of this document.
/// Header odd = headers.odd;
///
/// // The header used for even pages of this document.
/// Header even = headers.even;
///
/// // Force the document to use a different header for odd and even pages.
/// document.DifferentOddAndEvenPages = true;
///
/// // Content can be added to the Headers in the same manor that it would be added to the main document.
/// Paragraph p1 = odd.InsertParagraph();
/// p1.Append("This is the odd pages header.");
///
/// Paragraph p2 = even.InsertParagraph();
/// p2.Append("This is the even pages header.");
///
/// // Save all changes to this document.
/// document.Save();
/// }// Release this document from memory.
///
public bool DifferentOddAndEvenPages
{
get
{
XDocument settings;
using (TextReader tr = new StreamReader(settingsPart.GetStream()))
settings = XDocument.Load(tr);
XElement evenAndOddHeaders = settings.Root.Element(w + "evenAndOddHeaders");
return evenAndOddHeaders != null;
}
set
{
XDocument settings;
using (TextReader tr = new StreamReader(settingsPart.GetStream()))
settings = XDocument.Load(tr);
XElement evenAndOddHeaders = settings.Root.Element(w + "evenAndOddHeaders");
if (evenAndOddHeaders == null)
{
if (value)
settings.Root.AddFirst(new XElement(w + "evenAndOddHeaders"));
}
else
{
if (!value)
evenAndOddHeaders.Remove();
}
using (TextWriter tw = new StreamWriter(settingsPart.GetStream()))
settings.Save(tw);
}
}
///
/// Should the Document use an independent Header and Footer for the first page?
///
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add header support to this document.
/// document.AddHeaders();
///
/// // The header used for the first page of this document.
/// Header first = document.Headers.first;
///
/// // Force the document to use a different header for first page.
/// document.DifferentFirstPage = true;
///
/// // Content can be added to the Headers in the same manor that it would be added to the main document.
/// Paragraph p = first.InsertParagraph();
/// p.Append("This is the first pages header.");
///
/// // Save all changes to this document.
/// document.Save();
/// }// Release this document from memory.
///
public bool DifferentFirstPage
{
get
{
XElement body = mainDoc.Root.Element(w + "body");
XElement sectPr = body.Element(w + "sectPr");
if (sectPr != null)
{
XElement titlePg = sectPr.Element(w + "titlePg");
if (titlePg != null)
return true;
}
return false;
}
set
{
XElement body = mainDoc.Root.Element(w + "body");
XElement sectPr = null;
XElement titlePg = null;
if (sectPr == null)
body.Add(new XElement(w + "sectPr", string.Empty));
sectPr = body.Element(w + "sectPr");
titlePg = sectPr.Element(w + "titlePg");
if (titlePg == null)
{
if (value)
sectPr.Add(new XElement(w + "titlePg", string.Empty));
}
else
{
if (!value)
titlePg.Remove();
}
}
}
private Header GetHeaderByType(string type)
{
return (Header)GetHeaderOrFooterByType(type, true);
}
private Footer GetFooterByType(string type)
{
return (Footer)GetHeaderOrFooterByType(type, false);
}
private object GetHeaderOrFooterByType(string type, bool isHeader)
{
// Switch which handles either case Header\Footer, this just cuts down on code duplication.
string reference = "footerReference";
if (isHeader)
reference = "headerReference";
// Get the Id of the [default, even or first] [Header or Footer]
string Id =
(
from e in mainDoc.Descendants(XName.Get("body", DocX.w.NamespaceName)).Descendants()
where (e.Name.LocalName == reference) && (e.Attribute(w + "type").Value == type)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (Id != null)
{
// Get the Xml file for this Header or Footer.
Uri partUri = mainPart.GetRelationship(Id).TargetUri;
// Weird problem with PackaePart API.
if (!partUri.OriginalString.StartsWith("/word/"))
partUri = new Uri("/word/" + partUri.OriginalString, UriKind.Relative);
// Get the Part and open a stream to get the Xml file.
PackagePart part = package.GetPart(partUri);
XDocument doc;
using (TextReader tr = new StreamReader(part.GetStream()))
{
doc = XDocument.Load(tr);
// Header and Footer extend Container.
Container c;
if (isHeader)
c = new Header(this, doc.Element(w + "hdr"), part);
else
c = new Footer(this, doc.Element(w + "ftr"), part);
return c;
}
}
// If we got this far something went wrong.
return null;
}
// Get the word\document.xml part
internal PackagePart mainPart;
// Get the word\settings.xml part
internal PackagePart settingsPart;
internal PackagePart endnotesPart;
internal PackagePart footnotesPart;
internal PackagePart stylesPart;
internal PackagePart stylesWithEffectsPart;
internal PackagePart numberingPart;
internal PackagePart fontTablePart;
#region Internal variables defined foreach DocX object
// Object representation of the .docx
internal Package package;
// The mainDocument is loaded into a XDocument object for easy querying and editing
internal XDocument mainDoc;
internal XDocument settings;
internal XDocument endnotes;
internal XDocument footnotes;
internal XDocument styles;
internal XDocument stylesWithEffects;
internal XDocument numbering;
internal XDocument fontTable;
internal XDocument header1;
internal XDocument header2;
internal XDocument header3;
// A lookup for the Paragraphs in this document.
internal Dictionary paragraphLookup = new Dictionary();
// Every document is stored in a MemoryStream, all edits made to a document are done in memory.
internal MemoryStream memoryStream;
// The filename that this document was loaded from
internal string filename;
// The stream that this document was loaded from
internal Stream stream;
#endregion
internal DocX(DocX document, XElement xml)
: base(document, xml)
{
}
///
/// Returns a list of Images in this document.
///
///
/// Get the unique Id of every Image in this document.
///
/// // Load a document.
/// DocX document = DocX.Load(@"C:\Example\Test.docx");
///
/// // Loop through each Image in this document.
/// foreach (Novacode.Image i in document.Images)
/// {
/// // Get the unique Id which identifies this Image.
/// string uniqueId = i.Id;
/// }
///
///
///
///
///
///
///
public List Images
{
get
{
PackageRelationshipCollection imageRelationships = mainPart.GetRelationshipsByType("http://schemas.openxmlformats.org/officeDocument/2006/relationships/image");
if (imageRelationships.Count() > 0)
{
return
(
from i in imageRelationships
select new Image(this, i)
).ToList();
}
return new List();
}
}
///
/// Returns a list of custom properties in this document.
///
///
/// Method 1: Get the name, type and value of each CustomProperty in this document.
///
/// // Load Example.docx
/// DocX document = DocX.Load(@"C:\Example\Test.docx");
///
/// /*
/// * No two custom properties can have the same name,
/// * so a Dictionary is the perfect data structure to store them in.
/// * Each custom property can be accessed using its name.
/// */
/// foreach (string name in document.CustomProperties.Keys)
/// {
/// // Grab a custom property using its name.
/// CustomProperty cp = document.CustomProperties[name];
///
/// // Write this custom properties details to Console.
/// Console.WriteLine(string.Format("Name: '{0}', Value: {1}", cp.Name, cp.Value));
/// }
///
/// Console.WriteLine("Press any key...");
///
/// // Wait for the user to press a key before closing the Console.
/// Console.ReadKey();
///
///
///
/// Method 2: Get the name, type and value of each CustomProperty in this document.
///
/// // Load Example.docx
/// DocX document = DocX.Load(@"C:\Example\Test.docx");
///
/// /*
/// * No two custom properties can have the same name,
/// * so a Dictionary is the perfect data structure to store them in.
/// * The values of this Dictionary are CustomProperties.
/// */
/// foreach (CustomProperty cp in document.CustomProperties.Values)
/// {
/// // Write this custom properties details to Console.
/// Console.WriteLine(string.Format("Name: '{0}', Value: {1}", cp.Name, cp.Value));
/// }
///
/// Console.WriteLine("Press any key...");
///
/// // Wait for the user to press a key before closing the Console.
/// Console.ReadKey();
///
///
///
public Dictionary CustomProperties
{
get
{
if (package.PartExists(new Uri("/docProps/custom.xml", UriKind.Relative)))
{
PackagePart docProps_custom = package.GetPart(new Uri("/docProps/custom.xml", UriKind.Relative));
XDocument customPropDoc;
using (TextReader tr = new StreamReader(docProps_custom.GetStream(FileMode.Open, FileAccess.Read)))
customPropDoc = XDocument.Load(tr, LoadOptions.PreserveWhitespace);
// Get all of the custom properties in this document
return
(
from p in customPropDoc.Descendants(XName.Get("property", customPropertiesSchema.NamespaceName))
let Name = p.Attribute(XName.Get("name")).Value
let Type = p.Descendants().Single().Name.LocalName
let Value = p.Descendants().Single().Value
select new CustomProperty(Name, Type, Value)
).ToDictionary(p => p.Name, StringComparer.CurrentCultureIgnoreCase);
}
return new Dictionary();
}
}
///
/// Returns the list of document core properties with corresponding values.
///
public Dictionary CoreProperties
{
get
{
if (package.PartExists(new Uri("/docProps/core.xml", UriKind.Relative)))
{
PackagePart docProps_Core = package.GetPart(new Uri("/docProps/core.xml", UriKind.Relative));
XDocument corePropDoc;
using (TextReader tr = new StreamReader(docProps_Core.GetStream(FileMode.Open, FileAccess.Read)))
corePropDoc = XDocument.Load(tr, LoadOptions.PreserveWhitespace);
// Get all of the core properties in this document
return (from docProperty in corePropDoc.Root.Elements()
select
new KeyValuePair(
string.Format(
"{0}:{1}",
corePropDoc.Root.GetPrefixOfNamespace(docProperty.Name.Namespace),
docProperty.Name.LocalName),
docProperty.Value)).ToDictionary(p => p.Key, v => v.Value);
}
return new Dictionary();
}
}
///
/// Get the Text of this document.
///
///
/// Write to Console the Text from this document.
///
/// // Load a document
/// DocX document = DocX.Load(@"C:\Example\Test.docx");
///
/// // Get the text of this document.
/// string text = document.Text;
///
/// // Write the text of this document to Console.
/// Console.Write(text);
///
/// // Wait for the user to press a key before closing the console window.
/// Console.ReadKey();
///
///
public string Text
{
get
{
return HelperFunctions.GetText(Xml);
}
}
internal string GetCollectiveText(List list)
{
string text = string.Empty;
foreach (var hp in list)
{
using (TextReader tr = new StreamReader(hp.GetStream()))
{
XDocument d = XDocument.Load(tr);
StringBuilder sb = new StringBuilder();
// Loop through each text item in this run
foreach (XElement descendant in d.Descendants())
{
switch (descendant.Name.LocalName)
{
case "tab":
sb.Append("\t");
break;
case "br":
sb.Append("\n");
break;
case "t":
goto case "delText";
case "delText":
sb.Append(descendant.Value);
break;
default: break;
}
}
text += "\n" + sb.ToString();
}
}
return text;
}
///
/// Insert the contents of another document at the end of this document.
///
/// The document to insert at the end of this document.
///
/// Create a new document and insert an old document into it.
///
/// // Create a new document.
/// using (DocX newDocument = DocX.Create(@"NewDocument.docx"))
/// {
/// // Load an old document.
/// using (DocX oldDocument = DocX.Load(@"OldDocument.docx"))
/// {
/// // Insert the old document into the new document.
/// newDocument.InsertDocument(oldDocument);
///
/// // Save the new document.
/// newDocument.Save();
/// }// Release the old document from memory.
/// }// Release the new document from memory.
///
///
/// If the document being inserted contains Images, CustomProperties and or custom styles, these will be correctly inserted into the new document. In the case of Images, new ID's are generated for the Images being inserted to avoid ID conflicts. CustomProperties with the same name will be ignored not replaced.
///
///
public void InsertDocument(DocX remote_document)
{
// We don't want to effect the origional XDocument, so create a new one from the old one.
XDocument remote_mainDoc = new XDocument(remote_document.mainDoc);
XDocument remote_footnotes = null ;
if(remote_document.footnotes != null)
remote_footnotes = new XDocument(remote_document.footnotes);
XDocument remote_endnotes = null;
if (remote_document.endnotes != null)
remote_endnotes = new XDocument(remote_document.endnotes);
// Remove all header and footer references.
remote_mainDoc.Descendants(XName.Get("headerReference", DocX.w.NamespaceName)).Remove();
remote_mainDoc.Descendants(XName.Get("footerReference", DocX.w.NamespaceName)).Remove();
// Get the body of the remote document.
XElement remote_body = remote_mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
// Every file that is missing from the local document will have to be copied, every file that already exists will have to be merged.
PackagePartCollection ppc = remote_document.package.GetParts();
List ignoreContentTypes = new List
{
"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml",
"application/vnd.openxmlformats-package.core-properties+xml",
"application/vnd.openxmlformats-officedocument.extended-properties+xml",
"application/vnd.openxmlformats-package.relationships+xml",
};
List imageContentTypes = new List
{
"image/jpeg",
"image/png",
"image/bmp",
"image/gif",
"image/tiff",
"image/icon",
"image/pcx",
"image/emf",
"image/wmf"
};
// Check if each PackagePart pp exists in this document.
foreach (PackagePart remote_pp in ppc)
{
if (ignoreContentTypes.Contains(remote_pp.ContentType) || imageContentTypes.Contains(remote_pp.ContentType))
continue;
// If this external PackagePart already exits then we must merge them.
if (package.PartExists(remote_pp.Uri))
{
PackagePart local_pp = package.GetPart(remote_pp.Uri);
switch (remote_pp.ContentType)
{
case "application/vnd.openxmlformats-officedocument.custom-properties+xml":
merge_customs(remote_pp, local_pp, remote_mainDoc);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":
merge_styles(remote_pp, local_pp, remote_mainDoc, remote_document, remote_footnotes, remote_endnotes);
break;
case "application/vnd.ms-word.stylesWithEffects+xml":
merge_styles(remote_pp, local_pp, remote_mainDoc, remote_document, remote_footnotes, remote_endnotes);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml":
merge_fonts(remote_pp, local_pp, remote_mainDoc, remote_document);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":
merge_numbering(remote_pp, local_pp, remote_mainDoc, remote_document);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":
merge_footnotes(remote_pp, local_pp, remote_mainDoc, remote_document, remote_footnotes);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":
merge_endnotes(remote_pp, local_pp, remote_mainDoc, remote_document, remote_endnotes);
break;
default:
break;
}
}
// If this external PackagePart does not exits in the internal document then we can simply copy it.
else
{
var packagePart = clonePackagePart(remote_pp);
switch (remote_pp.ContentType)
{
case "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":
endnotesPart = packagePart;
endnotes = remote_endnotes;
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":
footnotesPart = packagePart;
footnotes = remote_footnotes;
break;
case "application/vnd.openxmlformats-officedocument.custom-properties+xml":
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":
stylesPart = packagePart;
using (TextReader tr = new StreamReader(stylesPart.GetStream()))
styles = XDocument.Load(tr);
break;
case "application/vnd.ms-word.stylesWithEffects+xml":
stylesWithEffectsPart = packagePart;
using (TextReader tr = new StreamReader(stylesWithEffectsPart.GetStream()))
stylesWithEffects = XDocument.Load(tr);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml":
fontTablePart = packagePart;
using (TextReader tr = new StreamReader(fontTablePart.GetStream()))
fontTable = XDocument.Load(tr);
break;
case "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":
numberingPart = packagePart;
using (TextReader tr = new StreamReader(numberingPart.GetStream()))
numbering = XDocument.Load(tr);
break;
}
clonePackageRelationship(remote_document, remote_pp, remote_mainDoc);
}
}
foreach (var hyperlink_rel in remote_document.mainPart.GetRelationshipsByType("http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink"))
{
var old_rel_Id = hyperlink_rel.Id;
var new_rel_Id = mainPart.CreateRelationship(hyperlink_rel.TargetUri, hyperlink_rel.TargetMode, hyperlink_rel.RelationshipType).Id;
var hyperlink_refs = remote_mainDoc.Descendants(XName.Get("hyperlink", DocX.w.NamespaceName));
foreach (var hyperlink_ref in hyperlink_refs)
{
XAttribute a0 = hyperlink_ref.Attribute(XName.Get("id", DocX.r.NamespaceName));
if (a0 != null && a0.Value == old_rel_Id)
{
a0.SetValue(new_rel_Id);
}
}
}
foreach (PackagePart remote_pp in ppc)
{
if (imageContentTypes.Contains(remote_pp.ContentType))
{
merge_images(remote_pp, remote_document, remote_mainDoc, remote_pp.ContentType);
}
}
int id = 0;
var local_docPrs = mainDoc.Root.Descendants(XName.Get("docPr", DocX.wp.NamespaceName));
foreach (var local_docPr in local_docPrs)
{
XAttribute a_id = local_docPr.Attribute(XName.Get("id"));
int a_id_value;
if (a_id != null && int.TryParse(a_id.Value, out a_id_value))
if (a_id_value > id)
id = a_id_value;
}
id++;
// docPr must be sequential
var docPrs = remote_body.Descendants(XName.Get("docPr", DocX.wp.NamespaceName));
foreach (var docPr in docPrs)
{
docPr.SetAttributeValue(XName.Get("id"), id);
id++;
}
// Add the remote documents contents to this document.
XElement local_body = mainDoc.Root.Element(XName.Get("body", DocX.w.NamespaceName));
local_body.Add(remote_body.Elements());
// Copy any missing root attributes to the local document.
foreach (XAttribute a in remote_mainDoc.Root.Attributes())
{
if (mainDoc.Root.Attribute(a.Name) == null)
{
mainDoc.Root.SetAttributeValue(a.Name, a.Value);
}
}
}
private void merge_images(PackagePart remote_pp, DocX remote_document, XDocument remote_mainDoc, String contentType)
{
// Before doing any other work, check to see if this image is actually referenced in the document.
// In my testing I have found cases of Images inside documents that are not refer
var remote_rel = remote_document.mainPart.GetRelationships().Where(r => r.TargetUri.OriginalString.Equals(remote_pp.Uri.OriginalString.Replace("/word/", ""))).FirstOrDefault();
if (remote_rel == null)
return;
String remote_Id = remote_rel.Id;
String remote_hash = ComputeMD5HashString(remote_pp.GetStream());
var image_parts = package.GetParts().Where(pp => pp.ContentType.Equals(contentType));
bool found = false;
foreach (var part in image_parts)
{
String local_hash = ComputeMD5HashString(part.GetStream());
if (local_hash.Equals(remote_hash))
{
// This image already exists in this document.
found = true;
var local_rel = mainPart.GetRelationships().Where(r => r.TargetUri.OriginalString.Equals(part.Uri.OriginalString.Replace("/word/", ""))).FirstOrDefault();
if (local_rel != null)
{
String new_Id = local_rel.Id;
// Replace all instances of remote_Id in the local document with local_Id
var elems = remote_mainDoc.Descendants(XName.Get("blip", DocX.a.NamespaceName));
foreach (var elem in elems)
{
XAttribute embed = elem.Attribute(XName.Get("embed", DocX.r.NamespaceName));
if (embed != null && embed.Value == remote_Id)
{
embed.SetValue(new_Id);
}
}
}
break;
}
}
// This image does not exist in this document.
if (!found)
{
String new_uri = remote_pp.Uri.OriginalString;
new_uri = new_uri.Remove(new_uri.LastIndexOf("/"));
new_uri = new_uri.Replace("word/", "");
new_uri += "/" + Guid.NewGuid().ToString() + contentType.Replace("image/", ".");
if (!new_uri.StartsWith("/"))
new_uri = "/" + new_uri;
PackagePart new_pp = package.CreatePart(new Uri(new_uri, UriKind.Relative), remote_pp.ContentType);
using (Stream s_read = remote_pp.GetStream())
{
using (Stream s_write = new_pp.GetStream(FileMode.Create))
{
byte[] buffer = new byte[32768];
int read;
while ((read = s_read.Read(buffer, 0, buffer.Length)) > 0)
{
s_write.Write(buffer, 0, read);
}
}
}
PackageRelationship pr = mainPart.CreateRelationship(new Uri(new_uri, UriKind.Relative), TargetMode.Internal, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image");
String new_Id = pr.Id;
// Replace all instances of remote_Id in the local document with local_Id
var elems = remote_mainDoc.Descendants(XName.Get("blip", DocX.a.NamespaceName));
foreach (var elem in elems)
{
XAttribute embed = elem.Attribute(XName.Get("embed", DocX.r.NamespaceName));
if (embed != null && embed.Value == remote_Id)
{
embed.SetValue(new_Id);
}
}
}
}
private string ComputeMD5HashString(Stream stream)
{
MD5 md5 = MD5.Create();
byte[] hash = md5.ComputeHash(stream);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
sb.Append(hash[i].ToString("X2"));
return sb.ToString();
}
private void merge_endnotes(PackagePart remote_pp, PackagePart local_pp, XDocument remote_mainDoc, DocX remote, XDocument remote_endnotes)
{
IEnumerable ids =
(
from d in endnotes.Root.Descendants()
where d.Name.LocalName == "endnote"
select int.Parse(d.Attribute(XName.Get("id", DocX.w.NamespaceName)).Value)
);
int max_id = ids.Max() + 1;
var endnoteReferences = remote_mainDoc.Descendants(XName.Get("endnoteReference", DocX.w.NamespaceName));
foreach (var endnote in remote_endnotes.Root.Elements().OrderBy(fr => fr.Attribute(XName.Get("id", DocX.r.NamespaceName))).Reverse())
{
XAttribute id = endnote.Attribute(XName.Get("id", DocX.w.NamespaceName));
int i;
if (id != null && int.TryParse(id.Value, out i))
{
if (i > 0)
{
foreach (var endnoteRef in endnoteReferences)
{
XAttribute a = endnoteRef.Attribute(XName.Get("id", DocX.w.NamespaceName));
if (a != null && int.Parse(a.Value).Equals(i))
{
a.SetValue(max_id);
}
}
// We care about copying this footnote.
endnote.SetAttributeValue(XName.Get("id", DocX.w.NamespaceName), max_id);
endnotes.Root.Add(endnote);
max_id++;
}
}
}
}
private void merge_footnotes(PackagePart remote_pp, PackagePart local_pp, XDocument remote_mainDoc, DocX remote, XDocument remote_footnotes)
{
IEnumerable ids =
(
from d in footnotes.Root.Descendants()
where d.Name.LocalName == "footnote"
select int.Parse(d.Attribute(XName.Get("id", DocX.w.NamespaceName)).Value)
);
int max_id = ids.Max() + 1;
var footnoteReferences = remote_mainDoc.Descendants(XName.Get("footnoteReference", DocX.w.NamespaceName));
foreach (var footnote in remote_footnotes.Root.Elements().OrderBy(fr => fr.Attribute(XName.Get("id", DocX.r.NamespaceName))).Reverse())
{
XAttribute id = footnote.Attribute(XName.Get("id", DocX.w.NamespaceName));
int i;
if (id != null && int.TryParse(id.Value, out i))
{
if (i > 0)
{
foreach (var footnoteRef in footnoteReferences)
{
XAttribute a = footnoteRef.Attribute(XName.Get("id", DocX.w.NamespaceName));
if (a != null && int.Parse(a.Value).Equals(i))
{
a.SetValue(max_id);
}
}
// We care about copying this footnote.
footnote.SetAttributeValue(XName.Get("id", DocX.w.NamespaceName), max_id);
footnotes.Root.Add(footnote);
max_id++;
}
}
}
}
private void merge_customs(PackagePart remote_pp, PackagePart local_pp, XDocument remote_mainDoc)
{
// Get the remote documents custom.xml file.
XDocument remote_custom_document;
using (TextReader tr = new StreamReader(remote_pp.GetStream()))
remote_custom_document = XDocument.Load(tr);
// Get the local documents custom.xml file.
XDocument local_custom_document;
using (TextReader tr = new StreamReader(local_pp.GetStream()))
local_custom_document = XDocument.Load(tr);
IEnumerable pids =
(
from d in remote_custom_document.Root.Descendants()
where d.Name.LocalName == "property"
select int.Parse(d.Attribute(XName.Get("pid")).Value)
);
int pid = pids.Max() + 1;
foreach (XElement remote_property in remote_custom_document.Root.Elements())
{
bool found = false;
foreach (XElement local_property in local_custom_document.Root.Elements())
{
XAttribute remote_property_name = remote_property.Attribute(XName.Get("name"));
XAttribute local_property_name = local_property.Attribute(XName.Get("name"));
if(remote_property != null && local_property_name != null && remote_property_name.Value.Equals(local_property_name.Value))
found = true;
}
if (!found)
{
remote_property.SetAttributeValue(XName.Get("pid"), pid);
local_custom_document.Root.Add(remote_property);
pid++;
}
}
// Save the modified local custom styles.xml file.
using (TextWriter tw = new StreamWriter(local_pp.GetStream(FileMode.Create, FileAccess.Write)))
local_custom_document.Save(tw, SaveOptions.None);
}
private void merge_numbering(PackagePart remote_pp, PackagePart local_pp, XDocument remote_mainDoc, DocX remote)
{
// Add each remote numbering to this document.
IEnumerable remote_abstractNums = remote.numbering.Root.Elements(XName.Get("abstractNum", DocX.w.NamespaceName));
int guidd = 0;
foreach (var an in remote_abstractNums)
{
XAttribute a = an.Attribute(XName.Get("abstractNumId", DocX.w.NamespaceName));
if(a != null)
{
int i;
if (int.TryParse(a.Value, out i))
{
if (i > guidd)
guidd = i;
}
}
}
guidd++;
IEnumerable remote_nums = remote.numbering.Root.Elements(XName.Get("num", DocX.w.NamespaceName));
int guidd2 = 0;
foreach (var an in remote_nums)
{
XAttribute a = an.Attribute(XName.Get("numId", DocX.w.NamespaceName));
if (a != null)
{
int i;
if (int.TryParse(a.Value, out i))
{
if (i > guidd2)
guidd2 = i;
}
}
}
guidd2++;
foreach (XElement remote_abstractNum in remote_abstractNums)
{
XAttribute abstractNumId = remote_abstractNum.Attribute(XName.Get("abstractNumId", DocX.w.NamespaceName));
if (abstractNumId != null)
{
String abstractNumIdValue = abstractNumId.Value;
abstractNumId.SetValue(guidd);
foreach (XElement remote_num in remote_nums)
{
var numIds = remote_mainDoc.Descendants(XName.Get("numId", DocX.w.NamespaceName));
foreach (var numId in numIds)
{
XAttribute attr = numId.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (attr != null && attr.Value.Equals(remote_num.Attribute(XName.Get("numId", DocX.w.NamespaceName)).Value))
{
attr.SetValue(guidd2);
}
}
remote_num.SetAttributeValue(XName.Get("numId", DocX.w.NamespaceName), guidd2);
XElement e = remote_num.Element(XName.Get("abstractNumId", DocX.w.NamespaceName));
if (e != null)
{
XAttribute a2 = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (a2 != null && a2.Value.Equals(abstractNumIdValue))
a2.SetValue(guidd);
}
guidd2++;
}
}
guidd++;
}
numbering.Root.Elements(XName.Get("abstractNum", DocX.w.NamespaceName)).Last().AddAfterSelf(remote_abstractNums);
numbering.Root.Elements(XName.Get("num", DocX.w.NamespaceName)).Last().AddAfterSelf(remote_nums);
}
private void merge_fonts(PackagePart remote_pp, PackagePart local_pp, XDocument remote_mainDoc, DocX remote)
{
// Add each remote font to this document.
IEnumerable remote_fonts = remote.fontTable.Root.Elements(XName.Get("font", DocX.w.NamespaceName));
IEnumerable local_fonts = fontTable.Root.Elements(XName.Get("font", DocX.w.NamespaceName));
foreach (XElement remote_font in remote_fonts)
{
bool flag_addFont = true;
foreach (XElement local_font in local_fonts)
{
if (local_font.Attribute(XName.Get("name", DocX.w.NamespaceName)).Value == remote_font.Attribute(XName.Get("name", DocX.w.NamespaceName)).Value)
{
flag_addFont = false;
break;
}
}
if (flag_addFont)
{
fontTable.Root.Add(remote_font);
}
}
}
private void merge_styles(PackagePart remote_pp, PackagePart local_pp, XDocument remote_mainDoc, DocX remote, XDocument remote_footnotes, XDocument remote_endnotes)
{
Dictionary local_styles = new Dictionary();
foreach (XElement local_style in styles.Root.Elements(XName.Get("style", DocX.w.NamespaceName)))
{
XElement temp = new XElement(local_style);
XAttribute styleId = temp.Attribute(XName.Get("styleId", DocX.w.NamespaceName));
String value = styleId.Value;
styleId.Remove();
String key = Regex.Replace(temp.ToString(), @"\s+", "");
if (!local_styles.ContainsKey(key)) local_styles.Add(key, value);
}
// Add each remote style to this document.
IEnumerable remote_styles = remote.styles.Root.Elements(XName.Get("style", DocX.w.NamespaceName));
foreach (XElement remote_style in remote_styles)
{
XElement temp = new XElement(remote_style);
XAttribute styleId = temp.Attribute(XName.Get("styleId", DocX.w.NamespaceName));
String value = styleId.Value;
styleId.Remove();
String key = Regex.Replace(temp.ToString(), @"\s+", "");
String guuid;
// Check to see if the local document already contains the remote style.
if (local_styles.ContainsKey(key))
{
String local_value;
local_styles.TryGetValue(key, out local_value);
// If the styleIds are the same then nothing needs to be done.
if (local_value == value)
continue;
// All we need to do is update the styleId.
else
{
guuid = local_value;
}
}
else
guuid = Guid.NewGuid().ToString();
foreach(XElement e in remote_mainDoc.Root.Descendants(XName.Get("pStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
foreach (XElement e in remote_mainDoc.Root.Descendants(XName.Get("rStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
foreach(XElement e in remote_mainDoc.Root.Descendants(XName.Get("tblStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
if (remote_endnotes != null)
{
foreach (XElement e in remote_endnotes.Root.Descendants(XName.Get("rStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
foreach (XElement e in remote_endnotes.Root.Descendants(XName.Get("pStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
}
if (remote_footnotes != null)
{
foreach (XElement e in remote_footnotes.Root.Descendants(XName.Get("rStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
foreach (XElement e in remote_footnotes.Root.Descendants(XName.Get("pStyle", DocX.w.NamespaceName)))
{
XAttribute e_styleId = e.Attribute(XName.Get("val", DocX.w.NamespaceName));
if (e_styleId != null && e_styleId.Value.Equals(styleId.Value))
{
e_styleId.SetValue(guuid);
}
}
}
// Make sure they don't clash by using a uuid.
styleId.SetValue(guuid);
styles.Root.Add(remote_style);
}
}
protected void clonePackageRelationship(DocX remote_document, PackagePart pp, XDocument remote_mainDoc)
{
string url = pp.Uri.OriginalString.Replace("/", "");
var remote_rels = remote_document.mainPart.GetRelationships();
foreach (var remote_rel in remote_rels)
{
if (url.Equals("word" + remote_rel.TargetUri.OriginalString.Replace("/", "")))
{
String remote_Id = remote_rel.Id;
String local_Id = mainPart.CreateRelationship(remote_rel.TargetUri, remote_rel.TargetMode, remote_rel.RelationshipType).Id;
// Replace all instances of remote_Id in the local document with local_Id
var elems = remote_mainDoc.Descendants(XName.Get("blip", DocX.a.NamespaceName));
foreach(var elem in elems)
{
XAttribute embed = elem.Attribute(XName.Get("embed", DocX.r.NamespaceName));
if (embed != null && embed.Value == remote_Id)
{
embed.SetValue(local_Id);
}
}
break;
}
}
}
protected PackagePart clonePackagePart(PackagePart pp)
{
PackagePart new_pp = package.CreatePart(pp.Uri, pp.ContentType);
using (Stream s_read = pp.GetStream())
{
using (Stream s_write = new_pp.GetStream(FileMode.Create))
{
byte[] buffer = new byte[32768];
int read;
while ((read = s_read.Read(buffer, 0, buffer.Length)) > 0)
{
s_write.Write(buffer, 0, read);
}
}
}
return new_pp;
}
protected string GetMD5HashFromStream(Stream stream)
{
MD5 md5 = new MD5CryptoServiceProvider();
byte[] retVal = md5.ComputeHash(stream);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < retVal.Length; i++)
{
sb.Append(retVal[i].ToString("x2"));
}
return sb.ToString();
}
///
/// Insert a new Table at the end of this document.
///
/// The number of columns to create.
/// The number of rows to create.
/// A new Table.
///
/// Insert a new Table with 2 columns and 3 rows, at the end of a document.
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"C:\Example\Test.docx"))
/// {
/// // Create a new Table with 2 columns and 3 rows.
/// Table newTable = document.InsertTable(2, 3);
///
/// // Set the design of this Table.
/// newTable.Design = TableDesign.LightShadingAccent2;
///
/// // Set the column names.
/// newTable.Rows[0].Cells[0].Paragraph.InsertText("Ice Cream", false);
/// newTable.Rows[0].Cells[1].Paragraph.InsertText("Price", false);
///
/// // Fill row 1
/// newTable.Rows[1].Cells[0].Paragraph.InsertText("Chocolate", false);
/// newTable.Rows[1].Cells[1].Paragraph.InsertText("€3:50", false);
///
/// // Fill row 2
/// newTable.Rows[2].Cells[0].Paragraph.InsertText("Vanilla", false);
/// newTable.Rows[2].Cells[1].Paragraph.InsertText("€3:00", false);
///
/// // Save all changes made to document b.
/// document.Save();
/// }// Release this document from memory.
///
///
public new Table InsertTable(int rowCount, int columnCount)
{
if (rowCount < 1 || columnCount < 1)
throw new ArgumentOutOfRangeException("Row and Column count must be greater than zero.");
Table t = base.InsertTable(rowCount, columnCount);
t.mainPart = mainPart;
return t;
}
public Table AddTable(int rowCount, int columnCount)
{
if (rowCount < 1 || columnCount < 1)
throw new ArgumentOutOfRangeException("Row and Column count must be greater than zero.");
Table t = new Table(this, HelperFunctions.CreateTable(rowCount, columnCount));
t.mainPart = mainPart;
return t;
}
///
/// Insert a Table into this document. The Table's source can be a completely different document.
///
/// The Table to insert.
/// The index to insert this Table at.
/// The Table now associated with this document.
///
/// Extract a Table from document a and insert it into document b, at index 10.
///
/// // Place holder for a Table.
/// Table t;
///
/// // Load document a.
/// using (DocX documentA = DocX.Load(@"C:\Example\a.docx"))
/// {
/// // Get the first Table from this document.
/// t = documentA.Tables[0];
/// }
///
/// // Load document b.
/// using (DocX documentB = DocX.Load(@"C:\Example\b.docx"))
/// {
/// /*
/// * Insert the Table that was extracted from document a, into document b.
/// * This creates a new Table that is now associated with document b.
/// */
/// Table newTable = documentB.InsertTable(10, t);
///
/// // Save all changes made to document b.
/// documentB.Save();
/// }// Release this document from memory.
///
///
public new Table InsertTable(int index, Table t)
{
Table t2 = base.InsertTable(index, t);
t2.mainPart = mainPart;
return t2;
}
///
/// Insert a Table into this document. The Table's source can be a completely different document.
///
/// The Table to insert.
/// The Table now associated with this document.
///
/// Extract a Table from document a and insert it at the end of document b.
///
/// // Place holder for a Table.
/// Table t;
///
/// // Load document a.
/// using (DocX documentA = DocX.Load(@"C:\Example\a.docx"))
/// {
/// // Get the first Table from this document.
/// t = documentA.Tables[0];
/// }
///
/// // Load document b.
/// using (DocX documentB = DocX.Load(@"C:\Example\b.docx"))
/// {
/// /*
/// * Insert the Table that was extracted from document a, into document b.
/// * This creates a new Table that is now associated with document b.
/// */
/// Table newTable = documentB.InsertTable(t);
///
/// // Save all changes made to document b.
/// documentB.Save();
/// }// Release this document from memory.
///
///
public new Table InsertTable(Table t)
{
t = base.InsertTable(t);
t.mainPart = mainPart;
return t;
}
///
/// Insert a new Table at the end of this document.
///
/// The number of columns to create.
/// The number of rows to create.
/// The index to insert this Table at.
/// A new Table.
///
/// Insert a new Table with 2 columns and 3 rows, at index 37 in this document.
///
/// // Create a document.
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // Create a new Table with 3 rows and 2 columns. Insert this Table at index 37.
/// Table newTable = document.InsertTable(37, 3, 2);
///
/// // Set the design of this Table.
/// newTable.Design = TableDesign.LightShadingAccent3;
///
/// // Set the column names.
/// newTable.Rows[0].Cells[0].Paragraph.InsertText("Ice Cream", false);
/// newTable.Rows[0].Cells[1].Paragraph.InsertText("Price", false);
///
/// // Fill row 1
/// newTable.Rows[1].Cells[0].Paragraph.InsertText("Chocolate", false);
/// newTable.Rows[1].Cells[1].Paragraph.InsertText("€3:50", false);
///
/// // Fill row 2
/// newTable.Rows[2].Cells[0].Paragraph.InsertText("Vanilla", false);
/// newTable.Rows[2].Cells[1].Paragraph.InsertText("€3:00", false);
///
/// // Save all changes made to document b.
/// document.Save();
/// }// Release this document from memory.
///
///
public new Table InsertTable(int index, int rowCount, int columnCount)
{
if (rowCount < 1 || columnCount < 1)
throw new ArgumentOutOfRangeException("Row and Column count must be greater than zero.");
Table t = base.InsertTable(index, rowCount, columnCount);
t.mainPart = mainPart;
return t;
}
///
/// Creates a document using a Stream.
///
/// The Stream to create the document from.
/// Returns a DocX object which represents the document.
///
/// Creating a document from a FileStream.
///
/// // Use a FileStream fs to create a new document.
/// using(FileStream fs = new FileStream(@"C:\Example\Test.docx", FileMode.Create))
/// {
/// // Load the document using fs
/// using (DocX document = DocX.Create(fs))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory.
/// }
///
///
///
/// Creating a document in a SharePoint site.
///
/// using(SPSite mySite = new SPSite("http://server/sites/site"))
/// {
/// // Open a connection to the SharePoint site
/// using(SPWeb myWeb = mySite.OpenWeb())
/// {
/// // Create a MemoryStream ms.
/// using (MemoryStream ms = new MemoryStream())
/// {
/// // Create a document using ms.
/// using (DocX document = DocX.Create(ms))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory
///
/// // Add the document to the SharePoint site
/// web.Files.Add("filename", ms.ToArray(), true);
/// }
/// }
/// }
///
///
///
///
///
///
public static DocX Create(Stream stream)
{
// Store this document in memory
MemoryStream ms = new MemoryStream();
// Create the docx package
Package package = Package.Open(ms, FileMode.Create, FileAccess.ReadWrite);
PostCreation(ref package);
DocX document = DocX.Load(ms);
document.stream = stream;
return document;
}
///
/// Creates a document using a fully qualified or relative filename.
///
/// The fully qualified or relative filename.
/// Returns a DocX object which represents the document.
///
///
/// // Create a document using a relative filename.
/// using (DocX document = DocX.Create(@"..\Test.docx"))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory
///
///
/// // Create a document using a relative filename.
/// using (DocX document = DocX.Create(@"..\Test.docx"))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory
///
///
///
///
///
///
public static DocX Create(string filename)
{
// Store this document in memory
MemoryStream ms = new MemoryStream();
// Create the docx package
//WordprocessingDocument wdDoc = WordprocessingDocument.Create(ms, DocumentFormat.OpenXml.WordprocessingDocumentType.Document);
Package package = Package.Open(ms, FileMode.Create, FileAccess.ReadWrite);
PostCreation(ref package);
DocX document = DocX.Load(ms);
document.filename = filename;
return document;
}
internal static void PostCreation(ref Package package)
{
XDocument mainDoc, stylesDoc;
#region MainDocumentPart
// Create the main document part for this package
PackagePart mainDocumentPart = package.CreatePart(new Uri("/word/document.xml", UriKind.Relative), "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml");
package.CreateRelationship(mainDocumentPart.Uri, TargetMode.Internal, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument");
// Load the document part into a XDocument object
using (TextReader tr = new StreamReader(mainDocumentPart.GetStream(FileMode.Create, FileAccess.ReadWrite)))
{
mainDoc = XDocument.Parse
(@"
"
);
}
// Save the main document
using (TextWriter tw = new StreamWriter(mainDocumentPart.GetStream(FileMode.Create, FileAccess.Write)))
mainDoc.Save(tw, SaveOptions.None);
#endregion
#region StylePart
stylesDoc = HelperFunctions.AddDefaultStylesXml(package);
#endregion
package.Close();
}
internal static DocX PostLoad(ref Package package)
{
DocX document = new DocX(null, null);
document.package = package;
document.Document = document;
#region MainDocumentPart
document.mainPart = package.GetParts().Where
(
p => p.ContentType.Equals
(
"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
StringComparison.CurrentCultureIgnoreCase
)
).Single();
using (TextReader tr = new StreamReader(document.mainPart.GetStream(FileMode.Open, FileAccess.Read)))
document.mainDoc = XDocument.Load(tr, LoadOptions.PreserveWhitespace);
#endregion
PopulateDocument(document, package);
using (TextReader tr = new StreamReader(document.settingsPart.GetStream()))
document.settings = XDocument.Load(tr);
return document;
}
private static void PopulateDocument(DocX document, Package package)
{
Headers headers = new Headers();
headers.odd = document.GetHeaderByType("default");
headers.even = document.GetHeaderByType("even");
headers.first = document.GetHeaderByType("first");
Footers footers = new Footers();
footers.odd = document.GetFooterByType("default");
footers.even = document.GetFooterByType("even");
footers.first = document.GetFooterByType("first");
//// Get the sectPr for this document.
//XElement sectPr = document.mainDoc.Descendants(XName.Get("sectPr", DocX.w.NamespaceName)).Single();
//if (sectPr != null)
//{
// // Extract the even header reference
// var header_even_ref = sectPr.Elements().SingleOrDefault(x => x.Name.LocalName == "headerReference" && x.Attribute(XName.Get("type", DocX.w.NamespaceName)) != null && x.Attribute(XName.Get("type", DocX.w.NamespaceName)).Value == "even");
// string id = header_even_ref.Attribute(XName.Get("id", DocX.r.NamespaceName)).Value;
// var res = document.mainPart.GetRelationship(id);
// string ans = res.SourceUri.OriginalString;
// headers.even.xml_filename = ans;
// // Extract the odd header reference
// var header_odd_ref = sectPr.Elements().SingleOrDefault(x => x.Name.LocalName == "headerReference" && x.Attribute(XName.Get("type", DocX.w.NamespaceName)) != null && x.Attribute(XName.Get("type", DocX.w.NamespaceName)).Value == "default");
// string id2 = header_odd_ref.Attribute(XName.Get("id", DocX.r.NamespaceName)).Value;
// var res2 = document.mainPart.GetRelationship(id2);
// string ans2 = res2.SourceUri.OriginalString;
// headers.odd.xml_filename = ans2;
// // Extract the first header reference
// var header_first_ref = sectPr.Elements().SingleOrDefault(x => x.Name.LocalName == "h
//eaderReference" && x.Attribute(XName.Get("type", DocX.w.NamespaceName)) != null && x.Attribute(XName.Get("type", DocX.w.NamespaceName)).Value == "first");
// string id3 = header_first_ref.Attribute(XName.Get("id", DocX.r.NamespaceName)).Value;
// var res3 = document.mainPart.GetRelationship(id3);
// string ans3 = res3.SourceUri.OriginalString;
// headers.first.xml_filename = ans3;
// // Extract the even footer reference
// var footer_even_ref = sectPr.Elements().SingleOrDefault(x => x.Name.LocalName == "footerReference" && x.Attribute(XName.Get("type", DocX.w.NamespaceName)) != null && x.Attribute(XName.Get("type", DocX.w.NamespaceName)).Value == "even");
// string id4 = footer_even_ref.Attribute(XName.Get("id", DocX.r.NamespaceName)).Value;
// var res4 = document.mainPart.GetRelationship(id4);
// string ans4 = res4.SourceUri.OriginalString;
// footers.even.xml_filename = ans4;
// // Extract the odd footer reference
// var footer_odd_ref = sectPr.Elements().SingleOrDefault(x => x.Name.LocalName == "footerReference" && x.Attribute(XName.Get("type", DocX.w.NamespaceName)) != null && x.Attribute(XName.Get("type", DocX.w.NamespaceName)).Value == "default");
// string id5 = footer_odd_ref.Attribute(XName.Get("id", DocX.r.NamespaceName)).Value;
// var res5 = document.mainPart.GetRelationship(id5);
// string ans5 = res5.SourceUri.OriginalString;
// footers.odd.xml_filename = ans5;
// // Extract the first footer reference
// var footer_first_ref = sectPr.Elements().SingleOrDefault(x => x.Name.LocalName == "footerReference" && x.Attribute(XName.Get("type", DocX.w.NamespaceName)) != null && x.Attribute(XName.Get("type", DocX.w.NamespaceName)).Value == "first");
// string id6 = footer_first_ref.Attribute(XName.Get("id", DocX.r.NamespaceName)).Value;
// var res6 = document.mainPart.GetRelationship(id6);
// string ans6 = res6.SourceUri.OriginalString;
// footers.first.xml_filename = ans6;
//}
document.Xml = document.mainDoc.Root.Element(w + "body");
document.headers = headers;
document.footers = footers;
document.settingsPart = HelperFunctions.CreateOrGetSettingsPart(package);
var ps = package.GetParts();
//document.endnotesPart = HelperFunctions.GetPart();
foreach (var rel in document.mainPart.GetRelationships())
{
switch (rel.RelationshipType)
{
case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes":
document.endnotesPart = package.GetPart(new Uri("/word/" + rel.TargetUri.OriginalString.Replace("/word/", ""), UriKind.RelativeOrAbsolute));
using (TextReader tr = new StreamReader(document.endnotesPart.GetStream()))
document.endnotes= XDocument.Load(tr);
break;
case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes":
document.footnotesPart = package.GetPart(new Uri("/word/" + rel.TargetUri.OriginalString.Replace("/word/", ""), UriKind.RelativeOrAbsolute));
using (TextReader tr = new StreamReader(document.footnotesPart.GetStream()))
document.footnotes= XDocument.Load(tr);
break;
case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles":
document.stylesPart = package.GetPart(new Uri("/word/" + rel.TargetUri.OriginalString.Replace("/word/", ""), UriKind.RelativeOrAbsolute));
using (TextReader tr = new StreamReader(document.stylesPart.GetStream()))
document.styles = XDocument.Load(tr);
break;
case "http://schemas.microsoft.com/office/2007/relationships/stylesWithEffects":
document.stylesWithEffectsPart = package.GetPart(new Uri("/word/" + rel.TargetUri.OriginalString.Replace("/word/", ""), UriKind.RelativeOrAbsolute));
using (TextReader tr = new StreamReader(document.stylesWithEffectsPart.GetStream()))
document.stylesWithEffects = XDocument.Load(tr);
break;
case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable":
document.fontTablePart = package.GetPart(new Uri("/word/" + rel.TargetUri.OriginalString.Replace("/word/", ""), UriKind.RelativeOrAbsolute));
using (TextReader tr = new StreamReader(document.fontTablePart.GetStream()))
document.fontTable = XDocument.Load(tr);
break;
case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering":
document.numberingPart = package.GetPart(new Uri("/word/" + rel.TargetUri.OriginalString.Replace("/word/", ""), UriKind.RelativeOrAbsolute));
using (TextReader tr = new StreamReader(document.numberingPart.GetStream()))
document.numbering = XDocument.Load(tr);
break;
default:
break;
}
}
}
///
/// Loads a document into a DocX object using a Stream.
///
/// The Stream to load the document from.
///
/// Returns a DocX object which represents the document.
///
///
/// Loading a document from a FileStream.
///
/// // Open a FileStream fs to a document.
/// using (FileStream fs = new FileStream(@"C:\Example\Test.docx", FileMode.Open))
/// {
/// // Load the document using fs.
/// using (DocX document = DocX.Load(fs))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to the document.
/// document.Save();
/// }// Release this document from memory.
/// }
///
///
///
/// Loading a document from a SharePoint site.
///
/// // Get the SharePoint site that you want to access.
/// using (SPSite mySite = new SPSite("http://server/sites/site"))
/// {
/// // Open a connection to the SharePoint site
/// using (SPWeb myWeb = mySite.OpenWeb())
/// {
/// // Grab a document stored on this site.
/// SPFile file = web.GetFile("Source_Folder_Name/Source_File");
///
/// // DocX.Load requires a Stream, so open a Stream to this document.
/// Stream str = new MemoryStream(file.OpenBinary());
///
/// // Load the file using the Stream str.
/// using (DocX document = DocX.Load(str))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to the document.
/// document.Save();
/// }// Release this document from memory.
/// }
/// }
///
///
///
///
///
///
public static DocX Load(Stream stream)
{
MemoryStream ms = new MemoryStream();
stream.Position = 0;
byte[] data = new byte[stream.Length];
stream.Read(data, 0, (int)stream.Length);
ms.Write(data, 0, (int)stream.Length);
// Open the docx package
Package package = Package.Open(ms, FileMode.Open, FileAccess.ReadWrite);
DocX document = PostLoad(ref package);
document.package = package;
document.memoryStream = ms;
document.stream = stream;
return document;
}
///
/// Loads a document into a DocX object using a fully qualified or relative filename.
///
/// The fully qualified or relative filename.
///
/// Returns a DocX object which represents the document.
///
///
///
/// // Load a document using its fully qualified filename
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // Do something with the document here
///
/// // Save all changes made to document.
/// document.Save();
/// }// Release this document from memory.
///
///
/// // Load a document using its relative filename.
/// using(DocX document = DocX.Load(@"..\..\Test.docx"))
/// {
/// // Do something with the document here.
///
/// // Save all changes made to document.
/// document.Save();
/// }// Release this document from memory.
///
///
///
///
///
///
public static DocX Load(string filename)
{
if (!File.Exists(filename))
throw new FileNotFoundException(string.Format("File could not be found {0}", filename));
MemoryStream ms = new MemoryStream();
using (FileStream fs = new FileStream(filename, FileMode.Open))
{
byte[] data = new byte[fs.Length];
fs.Read(data, 0, (int)fs.Length);
ms.Write(data, 0, (int)fs.Length);
}
// Open the docx package
Package package = Package.Open(ms, FileMode.Open, FileAccess.ReadWrite);
DocX document = PostLoad(ref package);
document.package = package;
document.filename = filename;
document.memoryStream = ms;
return document;
}
///
/// Applies document template to the document. Document template may include styles, headers, footers, properties, etc. as well as text content.
///
///The path to the document template file.
///The document template file not found.
public void ApplyTemplate(string templateFilePath)
{
ApplyTemplate(templateFilePath, true);
}
///
/// Applies document template to the document. Document template may include styles, headers, footers, properties, etc. as well as text content.
///
///The path to the document template file.
///Whether to copy the document template text content to document.
///The document template file not found.
public void ApplyTemplate(string templateFilePath, bool includeContent)
{
if (!File.Exists(templateFilePath))
{
throw new FileNotFoundException(string.Format("File could not be found {0}", templateFilePath));
}
using (FileStream packageStream = new FileStream(templateFilePath, FileMode.Open, FileAccess.Read))
{
ApplyTemplate(packageStream, includeContent);
}
}
///
/// Applies document template to the document. Document template may include styles, headers, footers, properties, etc. as well as text content.
///
///The stream of the document template file.
public void ApplyTemplate(Stream templateStream)
{
ApplyTemplate(templateStream, true);
}
///
/// Applies document template to the document. Document template may include styles, headers, footers, properties, etc. as well as text content.
///
///The stream of the document template file.
///Whether to copy the document template text content to document.
public void ApplyTemplate(Stream templateStream, bool includeContent)
{
Package templatePackage = Package.Open(templateStream);
try
{
PackagePart documentPart = null;
XDocument documentDoc = null;
foreach (PackagePart packagePart in templatePackage.GetParts())
{
switch (packagePart.Uri.ToString())
{
case "/word/document.xml":
documentPart = packagePart;
using (XmlReader xr = XmlReader.Create(packagePart.GetStream(FileMode.Open, FileAccess.Read)))
{
documentDoc = XDocument.Load(xr);
}
break;
case "/_rels/.rels":
if (!this.package.PartExists(packagePart.Uri))
{
this.package.CreatePart(packagePart.Uri, packagePart.ContentType, packagePart.CompressionOption);
}
PackagePart globalRelsPart = this.package.GetPart(packagePart.Uri);
using (
StreamReader tr = new StreamReader(
packagePart.GetStream(FileMode.Open, FileAccess.Read), Encoding.UTF8))
{
using (
StreamWriter tw = new StreamWriter(
globalRelsPart.GetStream(FileMode.Create, FileAccess.Write), Encoding.UTF8))
{
tw.Write(tr.ReadToEnd());
}
}
break;
case "/word/_rels/document.xml.rels":
break;
default:
if (!this.package.PartExists(packagePart.Uri))
{
this.package.CreatePart(packagePart.Uri, packagePart.ContentType, packagePart.CompressionOption);
}
Encoding packagePartEncoding = Encoding.Default;
if (packagePart.Uri.ToString().EndsWith(".xml") || packagePart.Uri.ToString().EndsWith(".rels"))
{
packagePartEncoding = Encoding.UTF8;
}
PackagePart nativePart = this.package.GetPart(packagePart.Uri);
using (
StreamReader tr = new StreamReader(
packagePart.GetStream(FileMode.Open, FileAccess.Read), packagePartEncoding))
{
using (
StreamWriter tw = new StreamWriter(
nativePart.GetStream(FileMode.Create, FileAccess.Write), tr.CurrentEncoding))
{
tw.Write(tr.ReadToEnd());
}
}
break;
}
}
if (documentPart != null)
{
string mainContentType = documentPart.ContentType.Replace("template.main", "document.main");
if (this.package.PartExists(documentPart.Uri))
{
this.package.DeletePart(documentPart.Uri);
}
PackagePart documentNewPart = this.package.CreatePart(
documentPart.Uri, mainContentType, documentPart.CompressionOption);
using (XmlWriter xw = XmlWriter.Create(documentNewPart.GetStream(FileMode.Create, FileAccess.Write)))
{
documentDoc.WriteTo(xw);
}
foreach (PackageRelationship documentPartRel in documentPart.GetRelationships())
{
documentNewPart.CreateRelationship(
documentPartRel.TargetUri,
documentPartRel.TargetMode,
documentPartRel.RelationshipType,
documentPartRel.Id);
}
this.mainPart = documentNewPart;
this.mainDoc = documentDoc;
PopulateDocument(this, templatePackage);
// DragonFire: I added next line and recovered ApplyTemplate method.
// I do it, becouse PopulateDocument(...) writes into field "settingsPart" the part of Template's package
// and after line "templatePackage.Close();" in finally, field "settingsPart" becomes not available and method "Save" throw an exception...
// That's why I recreated settingsParts and unlinked it from Template's package =)
settingsPart = HelperFunctions.CreateOrGetSettingsPart(package);
}
if (!includeContent)
{
foreach (Paragraph paragraph in this.Paragraphs)
{
paragraph.Remove(false);
}
}
}
finally
{
this.package.Flush();
var documentRelsPart = this.package.GetPart(new Uri("/word/_rels/document.xml.rels", UriKind.Relative));
using (TextReader tr = new StreamReader(documentRelsPart.GetStream(FileMode.Open, FileAccess.Read)))
{
tr.Read();
}
templatePackage.Close();
}
}
///
/// Add an Image into this document from a fully qualified or relative filename.
///
/// The fully qualified or relative filename.
/// An Image file.
///
/// Add an Image into this document from a fully qualified filename.
///
/// // Load a document.
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // Add an Image from a file.
/// document.AddImage(@"C:\Example\Image.png");
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory.
///
///
///
///
public Image AddImage(string filename)
{
string contentType = "";
// The extension this file has will be taken to be its format.
switch (Path.GetExtension(filename))
{
case ".tiff": contentType = "image/tif"; break;
case ".tif": contentType = "image/tif"; break;
case ".png": contentType = "image/png"; break;
case ".bmp": contentType = "image/png"; break;
case ".gif": contentType = "image/gif"; break;
case ".jpg": contentType = "image/jpg"; break;
case ".jpeg": contentType = "image/jpeg"; break;
default: contentType = "image/jpg"; break;
}
return AddImage(filename as object, contentType);
}
///
/// Add an Image into this document from a Stream.
///
/// A Stream stream.
/// An Image file.
///
/// Add an Image into a document using a Stream.
///
/// // Open a FileStream fs to an Image.
/// using (FileStream fs = new FileStream(@"C:\Example\Image.jpg", FileMode.Open))
/// {
/// // Load a document.
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // Add an Image from a filestream fs.
/// document.AddImage(fs);
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory.
/// }
///
///
///
///
public Image AddImage(Stream stream)
{
return AddImage(stream as object);
}
///
/// Adds a hyperlink to a document and creates a Paragraph which uses it.
///
/// The text as displayed by the hyperlink.
/// The hyperlink itself.
/// Returns a hyperlink that can be inserted into a Paragraph.
///
/// Adds a hyperlink to a document and creates a Paragraph which uses it.
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add a hyperlink to this document.
/// Hyperlink h = document.AddHyperlink("Google", new Uri("http://www.google.com"));
///
/// // Add a new Paragraph to this document.
/// Paragraph p = document.InsertParagraph();
/// p.Append("My favourite search engine is ");
/// p.AppendHyperlink(h);
/// p.Append(", I think it's great.");
///
/// // Save all changes made to this document.
/// document.Save();
/// }
///
///
public Hyperlink AddHyperlink(string text, Uri uri)
{
XElement i = new XElement
(
XName.Get("hyperlink", DocX.w.NamespaceName),
new XAttribute(r + "id", string.Empty),
new XAttribute(w + "history", "1"),
new XElement(XName.Get("r", DocX.w.NamespaceName),
new XElement(XName.Get("rPr", DocX.w.NamespaceName),
new XElement(XName.Get("rStyle", DocX.w.NamespaceName),
new XAttribute(w + "val", "Hyperlink"))),
new XElement(XName.Get("t", DocX.w.NamespaceName), text))
);
Hyperlink h = new Hyperlink(this, mainPart, i);
h.text = text;
h.uri = uri;
AddHyperlinkStyleIfNotPresent();
return h;
}
internal void AddHyperlinkStyleIfNotPresent()
{
Uri word_styles_Uri = new Uri("/word/styles.xml", UriKind.Relative);
// If the internal document contains no /word/styles.xml create one.
if (!package.PartExists(word_styles_Uri))
HelperFunctions.AddDefaultStylesXml(package);
// Load the styles.xml into memory.
XDocument word_styles;
using (TextReader tr = new StreamReader(package.GetPart(word_styles_Uri).GetStream()))
word_styles = XDocument.Load(tr);
bool hyperlinkStyleExists =
(
from s in word_styles.Element(w + "styles").Elements()
let styleId = s.Attribute(XName.Get("styleId", w.NamespaceName))
where (styleId != null && styleId.Value == "Hyperlink")
select s
).Count() > 0;
if (!hyperlinkStyleExists)
{
XElement style = new XElement
(
w + "style",
new XAttribute(w + "type", "character"),
new XAttribute(w + "styleId", "Hyperlink"),
new XElement(w + "name", new XAttribute(w + "val", "Hyperlink")),
new XElement(w + "basedOn", new XAttribute(w + "val", "DefaultParagraphFont")),
new XElement(w + "uiPriority", new XAttribute(w + "val", "99")),
new XElement(w + "unhideWhenUsed"),
new XElement(w + "rsid", new XAttribute(w + "val", "0005416C")),
new XElement
(
w + "rPr",
new XElement(w + "color", new XAttribute(w + "val", "0000FF"), new XAttribute(w + "themeColor", "hyperlink")),
new XElement
(
w + "u",
new XAttribute(w + "val", "single")
)
)
);
word_styles.Element(w + "styles").Add(style);
// Save the styles document.
using (TextWriter tw = new StreamWriter(package.GetPart(word_styles_Uri).GetStream()))
word_styles.Save(tw);
}
}
private string GetNextFreeRelationshipID()
{
string id =
(
from r in mainPart.GetRelationships()
select r.Id
).Max();
// The convension for ids is rid01, rid02, etc
string newId = id.Replace("rId", "");
int result;
if (int.TryParse(newId, out result))
return ("rId" + (result + 1));
else
{
String guid = String.Empty;
do
{
guid = Guid.NewGuid().ToString();
} while (Char.IsDigit(guid[0]));
return guid;
}
}
///
/// Adds three new Headers to this document. One for the first page, one for odd pages and one for even pages.
///
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add header support to this document.
/// document.AddHeaders();
///
/// // Get a collection of all headers in this document.
/// Headers headers = document.Headers;
///
/// // The header used for the first page of this document.
/// Header first = headers.first;
///
/// // The header used for odd pages of this document.
/// Header odd = headers.odd;
///
/// // The header used for even pages of this document.
/// Header even = headers.even;
///
/// // Force the document to use a different header for first, odd and even pages.
/// document.DifferentFirstPage = true;
/// document.DifferentOddAndEvenPages = true;
///
/// // Content can be added to the Headers in the same manor that it would be added to the main document.
/// Paragraph p = first.InsertParagraph();
/// p.Append("This is the first pages header.");
///
/// // Save all changes to this document.
/// document.Save();
/// }// Release this document from memory.
///
public void AddHeaders()
{
AddHeadersOrFooters(true);
headers.odd = Document.GetHeaderByType("default");
headers.even = Document.GetHeaderByType("even");
headers.first = Document.GetHeaderByType("first");
}
///
/// Adds three new Footers to this document. One for the first page, one for odd pages and one for even pages.
///
///
/// // Create a document.
/// using (DocX document = DocX.Create(@"Test.docx"))
/// {
/// // Add footer support to this document.
/// document.AddFooters();
///
/// // Get a collection of all footers in this document.
/// Footers footers = document.Footers;
///
/// // The footer used for the first page of this document.
/// Footer first = footers.first;
///
/// // The footer used for odd pages of this document.
/// Footer odd = footers.odd;
///
/// // The footer used for even pages of this document.
/// Footer even = footers.even;
///
/// // Force the document to use a different footer for first, odd and even pages.
/// document.DifferentFirstPage = true;
/// document.DifferentOddAndEvenPages = true;
///
/// // Content can be added to the Footers in the same manor that it would be added to the main document.
/// Paragraph p = first.InsertParagraph();
/// p.Append("This is the first pages footer.");
///
/// // Save all changes to this document.
/// document.Save();
/// }// Release this document from memory.
///
public void AddFooters()
{
AddHeadersOrFooters(false);
footers.odd = Document.GetFooterByType("default");
footers.even = Document.GetFooterByType("even");
footers.first = Document.GetFooterByType("first");
}
///
/// Adds a Header to a document.
/// If the document already contains a Header it will be replaced.
///
/// The Header that was added to the document.
internal void AddHeadersOrFooters(bool b)
{
string element = "ftr";
string reference = "footer";
if (b)
{
element = "hdr";
reference = "header";
}
DeleteHeadersOrFooters(b);
XElement sectPr = mainDoc.Root.Element(w + "body").Element(w + "sectPr");
for (int i = 1; i < 4; i++)
{
string header_uri = string.Format("/word/{0}{1}.xml", reference, i);
PackagePart headerPart = package.CreatePart(new Uri(header_uri, UriKind.Relative), string.Format("application/vnd.openxmlformats-officedocument.wordprocessingml.{0}+xml", reference));
PackageRelationship headerRelationship = mainPart.CreateRelationship(headerPart.Uri, TargetMode.Internal, string.Format("http://schemas.openxmlformats.org/officeDocument/2006/relationships/{0}", reference));
XDocument header;
// Load the document part into a XDocument object
using (TextReader tr = new StreamReader(headerPart.GetStream(FileMode.Create, FileAccess.ReadWrite)))
{
header = XDocument.Parse
(string.Format(@"
", element, reference)
);
}
// Save the main document
using (TextWriter tw = new StreamWriter(headerPart.GetStream(FileMode.Create, FileAccess.Write)))
header.Save(tw, SaveOptions.None);
string type;
switch (i)
{
case 1: type = "default"; break;
case 2: type = "even"; break;
case 3: type = "first"; break;
default: throw new ArgumentOutOfRangeException();
}
sectPr.Add
(
new XElement
(
w + string.Format("{0}Reference", reference),
new XAttribute(w + "type", type),
new XAttribute(r + "id", headerRelationship.Id)
)
);
}
}
internal void DeleteHeadersOrFooters(bool b)
{
string reference = "footer";
if (b)
reference = "header";
// Get all header Relationships in this document.
var header_relationships = mainPart.GetRelationshipsByType(string.Format("http://schemas.openxmlformats.org/officeDocument/2006/relationships/{0}", reference));
foreach (PackageRelationship header_relationship in header_relationships)
{
// Get the TargetUri for this Part.
Uri header_uri = header_relationship.TargetUri;
// Check to see if the document actually contains the Part.
if (!header_uri.OriginalString.StartsWith("/word/"))
header_uri = new Uri("/word/" + header_uri.OriginalString, UriKind.Relative);
if (package.PartExists(header_uri))
{
// Delete the Part
package.DeletePart(header_uri);
// Get all references to this Relationship in the document.
var query =
(
from e in mainDoc.Descendants(XName.Get("body", DocX.w.NamespaceName)).Descendants()
where (e.Name.LocalName == string.Format("{0}Reference", reference)) && (e.Attribute(r + "id").Value == header_relationship.Id)
select e
);
// Remove all references to this Relationship in the document.
for (int i = 0; i < query.Count(); i++)
query.ElementAt(i).Remove();
// Delete the Relationship.
package.DeleteRelationship(header_relationship.Id);
}
}
}
internal Image AddImage(object o, string contentType = "image/jpeg")
{
// Open a Stream to the new image being added.
Stream newImageStream;
if (o is string)
newImageStream = new FileStream(o as string, FileMode.Open, FileAccess.Read);
else
newImageStream = o as Stream;
// Get all image parts in word\document.xml
List imageParts = mainPart.GetRelationshipsByType("http://schemas.openxmlformats.org/officeDocument/2006/relationships/image").Select(ir => package.GetParts().Where(p => p.Uri.ToString().EndsWith(ir.TargetUri.ToString())).First()).ToList();
foreach (PackagePart relsPart in package.GetParts().Where(part => part.Uri.ToString().Contains("/word/")).Where(part => part.ContentType.Equals("application/vnd.openxmlformats-package.relationships+xml")))
{
XDocument relsPartContent;
using (TextReader tr = new StreamReader(relsPart.GetStream(FileMode.Open, FileAccess.Read)))
relsPartContent = XDocument.Load(tr);
IEnumerable imageRelationships =
relsPartContent.Root.Elements().Where
(
imageRel =>
imageRel.Attribute(XName.Get("Type")).Value.Equals("http://schemas.openxmlformats.org/officeDocument/2006/relationships/image")
);
foreach (XElement imageRelationship in imageRelationships)
{
if (imageRelationship.Attribute(XName.Get("Target")) != null)
{
string imagePartUri = Path.Combine(Path.GetDirectoryName(relsPart.Uri.ToString()), imageRelationship.Attribute(XName.Get("Target")).Value);
imagePartUri = Path.GetFullPath(imagePartUri.Replace("\\_rels", string.Empty));
imagePartUri = imagePartUri.Replace(Path.GetFullPath("\\"), string.Empty).Replace("\\", "/");
if (!imagePartUri.StartsWith("/"))
imagePartUri = "/" + imagePartUri;
PackagePart imagePart = package.GetPart(new Uri(imagePartUri, UriKind.Relative));
imageParts.Add(imagePart);
}
}
}
// Loop through each image part in this document.
foreach (PackagePart pp in imageParts)
{
// Open a tempory Stream to this image part.
using (Stream tempStream = pp.GetStream(FileMode.Open, FileAccess.Read))
{
// Compare this image to the new image being added.
if (HelperFunctions.IsSameFile(tempStream, newImageStream))
{
// Get the image object for this image part
string id = mainPart.GetRelationshipsByType("http://schemas.openxmlformats.org/officeDocument/2006/relationships/image")
.Where(r => r.TargetUri == pp.Uri)
.Select(r => r.Id).First();
// Return the Image object
return Images.Where(i => i.Id == id).First();
}
}
}
string imgPartUriPath = string.Empty;
string extension = contentType.Substring(contentType.LastIndexOf("/") + 1);
do
{
// Create a new image part.
imgPartUriPath = string.Format
(
"/word/media/{0}.{1}",
Guid.NewGuid().ToString(), // The unique part.
extension
);
} while (package.PartExists(new Uri(imgPartUriPath, UriKind.Relative)));
// We are now guareenteed that imgPartUriPath is unique.
PackagePart img = package.CreatePart(new Uri(imgPartUriPath, UriKind.Relative), contentType);
// Create a new image relationship
PackageRelationship rel = mainPart.CreateRelationship(img.Uri, TargetMode.Internal, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image");
// Open a Stream to the newly created Image part.
using (Stream stream = img.GetStream(FileMode.Create, FileAccess.Write))
{
// Using the Stream to the real image, copy this streams data into the newly create Image part.
using (newImageStream)
{
byte[] bytes = new byte[newImageStream.Length];
newImageStream.Read(bytes, 0, (int)newImageStream.Length);
stream.Write(bytes, 0, (int)newImageStream.Length);
}// Close the Stream to the new image.
}// Close the Stream to the new image part.
return new Image(this, rel);
}
///
/// Save this document back to the location it was loaded from.
///
///
///
/// // Load a document.
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // Add an Image from a file.
/// document.AddImage(@"C:\Example\Image.jpg");
///
/// // Save all changes made to this document.
/// document.Save();
/// }// Release this document from memory.
///
///
///
///
///
///
///
///
public void Save()
{
Headers headers = Headers;
// Save the main document
using (TextWriter tw = new StreamWriter(mainPart.GetStream(FileMode.Create, FileAccess.Write)))
mainDoc.Save(tw, SaveOptions.None);
XElement body = mainDoc.Root.Element(w + "body");
XElement sectPr = body.Descendants(w + "sectPr").FirstOrDefault();
if (sectPr != null)
{
var evenHeaderRef =
(
from e in mainDoc.Descendants(w + "headerReference")
let type = e.Attribute(w + "type")
where type != null && type.Value.Equals("even", StringComparison.CurrentCultureIgnoreCase)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (evenHeaderRef != null)
{
XElement even = headers.even.Xml;
Uri target = PackUriHelper.ResolvePartUri
(
mainPart.Uri,
mainPart.GetRelationship(evenHeaderRef).TargetUri
);
using (TextWriter tw = new StreamWriter(package.GetPart(target).GetStream(FileMode.Create, FileAccess.Write)))
{
new XDocument
(
new XDeclaration("1.0", "UTF-8", "yes"),
even
).Save(tw, SaveOptions.None);
}
}
var oddHeaderRef =
(
from e in mainDoc.Descendants(w + "headerReference")
let type = e.Attribute(w + "type")
where type != null && type.Value.Equals("default", StringComparison.CurrentCultureIgnoreCase)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (oddHeaderRef != null)
{
XElement odd = headers.odd.Xml;
Uri target = PackUriHelper.ResolvePartUri
(
mainPart.Uri,
mainPart.GetRelationship(oddHeaderRef).TargetUri
);
// Save header1
using (TextWriter tw = new StreamWriter(package.GetPart(target).GetStream(FileMode.Create, FileAccess.Write)))
{
new XDocument
(
new XDeclaration("1.0", "UTF-8", "yes"),
odd
).Save(tw, SaveOptions.None);
}
}
var firstHeaderRef =
(
from e in mainDoc.Descendants(w + "headerReference")
let type = e.Attribute(w + "type")
where type != null && type.Value.Equals("first", StringComparison.CurrentCultureIgnoreCase)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (firstHeaderRef != null)
{
XElement first = headers.first.Xml;
Uri target = PackUriHelper.ResolvePartUri
(
mainPart.Uri,
mainPart.GetRelationship(firstHeaderRef).TargetUri
);
// Save header3
using (TextWriter tw = new StreamWriter(package.GetPart(target).GetStream(FileMode.Create, FileAccess.Write)))
{
new XDocument
(
new XDeclaration("1.0", "UTF-8", "yes"),
first
).Save(tw, SaveOptions.None);
}
}
var oddFooterRef =
(
from e in mainDoc.Descendants(w + "footerReference")
let type = e.Attribute(w + "type")
where type != null && type.Value.Equals("default", StringComparison.CurrentCultureIgnoreCase)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (oddFooterRef != null)
{
XElement odd = footers.odd.Xml;
Uri target = PackUriHelper.ResolvePartUri
(
mainPart.Uri,
mainPart.GetRelationship(oddFooterRef).TargetUri
);
// Save header1
using (TextWriter tw = new StreamWriter(package.GetPart(target).GetStream(FileMode.Create, FileAccess.Write)))
{
new XDocument
(
new XDeclaration("1.0", "UTF-8", "yes"),
odd
).Save(tw, SaveOptions.None);
}
}
var evenFooterRef =
(
from e in mainDoc.Descendants(w + "footerReference")
let type = e.Attribute(w + "type")
where type != null && type.Value.Equals("even", StringComparison.CurrentCultureIgnoreCase)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (evenFooterRef != null)
{
XElement even = footers.even.Xml;
Uri target = PackUriHelper.ResolvePartUri
(
mainPart.Uri,
mainPart.GetRelationship(evenFooterRef).TargetUri
);
// Save header2
using (TextWriter tw = new StreamWriter(package.GetPart(target).GetStream(FileMode.Create, FileAccess.Write)))
{
new XDocument
(
new XDeclaration("1.0", "UTF-8", "yes"),
even
).Save(tw, SaveOptions.None);
}
}
var firstFooterRef =
(
from e in mainDoc.Descendants(w + "footerReference")
let type = e.Attribute(w + "type")
where type != null && type.Value.Equals("first", StringComparison.CurrentCultureIgnoreCase)
select e.Attribute(r + "id").Value
).LastOrDefault();
if (firstFooterRef != null)
{
XElement first = footers.first.Xml;
Uri target = PackUriHelper.ResolvePartUri
(
mainPart.Uri,
mainPart.GetRelationship(firstFooterRef).TargetUri
);
// Save header3
using (TextWriter tw = new StreamWriter(package.GetPart(target).GetStream(FileMode.Create, FileAccess.Write)))
{
new XDocument
(
new XDeclaration("1.0", "UTF-8", "yes"),
first
).Save(tw, SaveOptions.None);
}
}
// Save the settings document.
using (TextWriter tw = new StreamWriter(settingsPart.GetStream(FileMode.Create, FileAccess.Write)))
settings.Save(tw, SaveOptions.None);
if (endnotesPart != null)
{
using (TextWriter tw = new StreamWriter(endnotesPart.GetStream(FileMode.Create, FileAccess.Write)))
endnotes.Save(tw, SaveOptions.None);
}
if (footnotesPart != null)
{
using (TextWriter tw = new StreamWriter(footnotesPart.GetStream(FileMode.Create, FileAccess.Write)))
footnotes.Save(tw, SaveOptions.None);
}
if (stylesPart != null)
{
using (TextWriter tw = new StreamWriter(stylesPart.GetStream(FileMode.Create, FileAccess.Write)))
styles.Save(tw, SaveOptions.None);
}
if (stylesWithEffectsPart != null)
{
using (TextWriter tw = new StreamWriter(stylesWithEffectsPart.GetStream(FileMode.Create, FileAccess.Write)))
stylesWithEffects.Save(tw, SaveOptions.None);
}
if (numberingPart != null)
{
using (TextWriter tw = new StreamWriter(numberingPart.GetStream(FileMode.Create, FileAccess.Write)))
numbering.Save(tw, SaveOptions.None);
}
if (fontTablePart != null)
{
using (TextWriter tw = new StreamWriter(fontTablePart.GetStream(FileMode.Create, FileAccess.Write)))
fontTable.Save(tw, SaveOptions.None);
}
}
// Close the document so that it can be saved.
package.Flush();
#region Save this document back to a file or stream, that was specified by the user at save time.
if (filename != null)
{
using (FileStream fs = new FileStream(filename, FileMode.Create))
{
fs.Write(memoryStream.ToArray(), 0, (int)memoryStream.Length);
}
}
else
{
// Set the length of this stream to 0
stream.SetLength(0);
// Write to the beginning of the stream
stream.Position = 0;
memoryStream.WriteTo(stream);
}
#endregion
}
///
/// Save this document to a file.
///
/// The filename to save this document as.
///
/// Load a document from one file and save it to another.
///
/// // Load a document using its fully qualified filename.
/// DocX document = DocX.Load(@"C:\Example\Test1.docx");
///
/// // Insert a new Paragraph
/// document.InsertParagraph("Hello world!", false);
///
/// // Save the document to a new location.
/// document.SaveAs(@"C:\Example\Test2.docx");
///
///
///
/// Load a document from a Stream and save it to a file.
///
/// DocX document;
/// using (FileStream fs1 = new FileStream(@"C:\Example\Test1.docx", FileMode.Open))
/// {
/// // Load a document using a stream.
/// document = DocX.Load(fs1);
///
/// // Insert a new Paragraph
/// document.InsertParagraph("Hello world again!", false);
/// }
///
/// // Save the document to a new location.
/// document.SaveAs(@"C:\Example\Test2.docx");
///
///
///
///
///
///
///
public void SaveAs(string filename)
{
this.filename = filename;
this.stream = null;
Save();
}
///
/// Save this document to a Stream.
///
/// The Stream to save this document to.
///
/// Load a document from a file and save it to a Stream.
///
/// // Place holder for a document.
/// DocX document;
///
/// using (FileStream fs1 = new FileStream(@"C:\Example\Test1.docx", FileMode.Open))
/// {
/// // Load a document using a stream.
/// document = DocX.Load(fs1);
///
/// // Insert a new Paragraph
/// document.InsertParagraph("Hello world again!", false);
/// }
///
/// using (FileStream fs2 = new FileStream(@"C:\Example\Test2.docx", FileMode.Create))
/// {
/// // Save the document to a different stream.
/// document.SaveAs(fs2);
/// }
///
/// // Release this document from memory.
/// document.Dispose();
///
///
///
/// Load a document from one Stream and save it to another.
///
/// DocX document;
/// using (FileStream fs1 = new FileStream(@"C:\Example\Test1.docx", FileMode.Open))
/// {
/// // Load a document using a stream.
/// document = DocX.Load(fs1);
///
/// // Insert a new Paragraph
/// document.InsertParagraph("Hello world again!", false);
/// }
///
/// using (FileStream fs2 = new FileStream(@"C:\Example\Test2.docx", FileMode.Create))
/// {
/// // Save the document to a different stream.
/// document.SaveAs(fs2);
/// }
///
///
///
///
///
///
///
public void SaveAs(Stream stream)
{
this.filename = null;
this.stream = stream;
Save();
}
///
/// Add a core property to this document. If a core property already exists with the same name it will be replaced. Core property names are case insensitive.
///
///The property name.
///The property value.
///
/// Add a core properties of each type to a document.
///
/// // Load Example.docx
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // If this document does not contain a core property called 'forename', create one.
/// if (!document.CoreProperties.ContainsKey("forename"))
/// {
/// // Create a new core property called 'forename' and set its value.
/// document.AddCoreProperty("forename", "Cathal");
/// }
///
/// // Get this documents core property called 'forename'.
/// string forenameValue = document.CoreProperties["forename"];
///
/// // Print all of the information about this core property to Console.
/// Console.WriteLine(string.Format("Name: '{0}', Value: '{1}'\nPress any key...", "forename", forenameValue));
///
/// // Save all changes made to this document.
/// document.Save();
/// } // Release this document from memory.
///
/// // Wait for the user to press a key before exiting.
/// Console.ReadKey();
///
///
///
///
///
public void AddCoreProperty(string propertyName, string propertyValue)
{
string propertyNamespacePrefix = propertyName.Contains(":") ? propertyName.Split(new[] { ':' })[0] : "cp";
string propertyLocalName = propertyName.Contains(":") ? propertyName.Split(new[] { ':' })[1] : propertyName;
// If this document does not contain a coreFilePropertyPart create one.)
if (!package.PartExists(new Uri("/docProps/core.xml", UriKind.Relative)))
throw new Exception("Core properties part doesn't exist.");
XDocument corePropDoc;
PackagePart corePropPart = package.GetPart(new Uri("/docProps/core.xml", UriKind.Relative));
using (TextReader tr = new StreamReader(corePropPart.GetStream(FileMode.Open, FileAccess.Read)))
{
corePropDoc = XDocument.Load(tr);
}
XElement corePropElement =
(from propElement in corePropDoc.Root.Elements()
where (propElement.Name.LocalName.Equals(propertyLocalName))
select propElement).SingleOrDefault();
if (corePropElement != null)
{
corePropElement.SetValue(propertyValue);
}
else
{
var propertyNamespace = corePropDoc.Root.GetNamespaceOfPrefix(propertyNamespacePrefix);
corePropDoc.Root.Add(new XElement(XName.Get(propertyLocalName, propertyNamespace.NamespaceName), propertyValue));
}
using (TextWriter tw = new StreamWriter(corePropPart.GetStream(FileMode.Create, FileAccess.Write)))
{
corePropDoc.Save(tw);
}
UpdateCorePropertyValue(this, propertyLocalName, propertyValue);
}
internal static void UpdateCorePropertyValue(DocX document, string corePropertyName, string corePropertyValue)
{
string matchPattern = string.Format(@"(DOCPROPERTY)?{0}\\\*MERGEFORMAT", corePropertyName).ToLower();
foreach (XElement e in document.mainDoc.Descendants(XName.Get("fldSimple", w.NamespaceName)))
{
string attr_value = e.Attribute(XName.Get("instr", w.NamespaceName)).Value.Replace(" ", string.Empty).Trim().ToLower();
if (Regex.IsMatch(attr_value, matchPattern))
{
XElement firstRun = e.Element(w + "r");
XElement firstText = firstRun.Element(w + "t");
XElement rPr = firstText.Element(w + "rPr");
// Delete everything and insert updated text value
e.RemoveNodes();
XElement t = new XElement(w + "t", rPr, corePropertyValue);
Novacode.Text.PreserveSpace(t);
e.Add(new XElement(firstRun.Name, firstRun.Attributes(), firstRun.Element(XName.Get("rPr", w.NamespaceName)), t));
}
}
#region Headers
IEnumerable headerParts = from headerPart in document.package.GetParts()
where (Regex.IsMatch(headerPart.Uri.ToString(), @"/word/header\d?.xml"))
select headerPart;
foreach (PackagePart pp in headerParts)
{
XDocument header = XDocument.Load(new StreamReader(pp.GetStream()));
foreach (XElement e in header.Descendants(XName.Get("fldSimple", w.NamespaceName)))
{
string attr_value = e.Attribute(XName.Get("instr", w.NamespaceName)).Value.Replace(" ", string.Empty).Trim().ToLower();
if (Regex.IsMatch(attr_value, matchPattern))
{
XElement firstRun = e.Element(w + "r");
// Delete everything and insert updated text value
e.RemoveNodes();
XElement t = new XElement(w + "t", corePropertyValue);
Novacode.Text.PreserveSpace(t);
e.Add(new XElement(firstRun.Name, firstRun.Attributes(), firstRun.Element(XName.Get("rPr", w.NamespaceName)), t));
}
}
using (TextWriter tw = new StreamWriter(pp.GetStream(FileMode.Create, FileAccess.Write)))
header.Save(tw);
}
#endregion
#region Footers
IEnumerable footerParts = from footerPart in document.package.GetParts()
where (Regex.IsMatch(footerPart.Uri.ToString(), @"/word/footer\d?.xml"))
select footerPart;
foreach (PackagePart pp in footerParts)
{
XDocument footer = XDocument.Load(new StreamReader(pp.GetStream()));
foreach (XElement e in footer.Descendants(XName.Get("fldSimple", w.NamespaceName)))
{
string attr_value = e.Attribute(XName.Get("instr", w.NamespaceName)).Value.Replace(" ", string.Empty).Trim().ToLower();
if (Regex.IsMatch(attr_value, matchPattern))
{
XElement firstRun = e.Element(w + "r");
// Delete everything and insert updated text value
e.RemoveNodes();
XElement t = new XElement(w + "t", corePropertyValue);
Novacode.Text.PreserveSpace(t);
e.Add(new XElement(firstRun.Name, firstRun.Attributes(), firstRun.Element(XName.Get("rPr", w.NamespaceName)), t));
}
}
using (TextWriter tw = new StreamWriter(pp.GetStream(FileMode.Create, FileAccess.Write)))
footer.Save(tw);
}
#endregion
PopulateDocument(document, document.package);
}
///
/// Add a custom property to this document. If a custom property already exists with the same name it will be replace. CustomProperty names are case insensitive.
///
/// The CustomProperty to add to this document.
///
/// Add a custom properties of each type to a document.
///
/// // Load Example.docx
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // A CustomProperty called forename which stores a string.
/// CustomProperty forename;
///
/// // If this document does not contain a custom property called 'forename', create one.
/// if (!document.CustomProperties.ContainsKey("forename"))
/// {
/// // Create a new custom property called 'forename' and set its value.
/// document.AddCustomProperty(new CustomProperty("forename", "Cathal"));
/// }
///
/// // Get this documents custom property called 'forename'.
/// forename = document.CustomProperties["forename"];
///
/// // Print all of the information about this CustomProperty to Console.
/// Console.WriteLine(string.Format("Name: '{0}', Value: '{1}'\nPress any key...", forename.Name, forename.Value));
///
/// // Save all changes made to this document.
/// document.Save();
/// } // Release this document from memory.
///
/// // Wait for the user to press a key before exiting.
/// Console.ReadKey();
///
///
///
///
public void AddCustomProperty(CustomProperty cp)
{
// If this document does not contain a customFilePropertyPart create one.
if (!package.PartExists(new Uri("/docProps/custom.xml", UriKind.Relative)))
HelperFunctions.CreateCustomPropertiesPart(this);
XDocument customPropDoc;
PackagePart customPropPart = package.GetPart(new Uri("/docProps/custom.xml", UriKind.Relative));
using (TextReader tr = new StreamReader(customPropPart.GetStream(FileMode.Open, FileAccess.Read)))
customPropDoc = XDocument.Load(tr, LoadOptions.PreserveWhitespace);
// Each custom property has a PID, get the highest PID in this document.
IEnumerable pids =
(
from d in customPropDoc.Descendants()
where d.Name.LocalName == "property"
select int.Parse(d.Attribute(XName.Get("pid")).Value)
);
int pid = 1;
if (pids.Count() > 0)
pid = pids.Max();
// Check if a custom property already exists with this name
var customProperty =
(
from d in customPropDoc.Descendants()
where (d.Name.LocalName == "property") && (d.Attribute(XName.Get("name")).Value == cp.Name)
select d
).SingleOrDefault();
// If a custom property with this name already exists remove it.
if (customProperty != null)
customProperty.Remove();
XElement propertiesElement = customPropDoc.Element(XName.Get("Properties", customPropertiesSchema.NamespaceName));
propertiesElement.Add
(
new XElement
(
XName.Get("property", customPropertiesSchema.NamespaceName),
new XAttribute("fmtid", "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}"),
new XAttribute("pid", pid + 1),
new XAttribute("name", cp.Name),
new XElement(customVTypesSchema + cp.Type, cp.Value)
)
);
// Save the custom properties
using (TextWriter tw = new StreamWriter(customPropPart.GetStream(FileMode.Create, FileAccess.Write)))
customPropDoc.Save(tw, SaveOptions.None);
// Refresh all fields in this document which display this custom property.
UpdateCustomPropertyValue(this, cp.Name, cp.Value.ToString());
}
///
/// Update the custom properties inside the document
///
/// The DocX document
/// The property used inside the document
/// The new value for the property
/// Different version of Word create different Document XML.
internal static void UpdateCustomPropertyValue(DocX document, string customPropertyName, string customPropertyValue)
{
// A list of documents, which will contain, The Main Document and if they exist: header1, header2, header3, footer1, footer2, footer3.
List documents = new List { document.mainDoc.Root };
// Check if each header exists and add if if so.
#region Headers
Headers headers = document.Headers;
if (headers.first != null)
documents.Add(headers.first.Xml);
if (headers.odd != null)
documents.Add(headers.odd.Xml);
if (headers.even != null)
documents.Add(headers.even.Xml);
#endregion
// Check if each footer exists and add if if so.
#region Footers
Footers footers = document.Footers;
if (footers.first != null)
documents.Add(footers.first.Xml);
if (footers.odd != null)
documents.Add(footers.odd.Xml);
if (footers.even != null)
documents.Add(footers.even.Xml);
#endregion
// Process each document in the list.
foreach (XElement doc in documents)
{
#region Word 2010+
foreach (XElement e in doc.Descendants(XName.Get("instrText", w.NamespaceName)))
{
string attr_value = e.Value.Replace(" ", string.Empty).Trim();
string match_value = string.Format(@"DOCPROPERTY {0} \* MERGEFORMAT", customPropertyName).Replace(" ", string.Empty);
if (attr_value.Equals(match_value, StringComparison.CurrentCultureIgnoreCase))
{
XNode node = e.Parent.NextNode;
bool found = false;
while (true)
{
if (node.NodeType == XmlNodeType.Element)
{
var ele = node as XElement;
var match = ele.Descendants(XName.Get("t", w.NamespaceName));
if (match.Count() > 0)
{
if (!found)
{
match.First().Value = customPropertyValue;
found = true;
}
else
{
ele.RemoveNodes();
}
}
else
{
match = ele.Descendants(XName.Get("fldChar", w.NamespaceName));
if (match.Count() > 0)
{
var endMatch = match.First().Attribute(XName.Get("fldCharType", w.NamespaceName));
if (endMatch != null && endMatch.Value == "end")
{
break;
}
}
}
}
node = node.NextNode;
}
}
}
#endregion
#region < Word 2010
foreach (XElement e in doc.Descendants(XName.Get("fldSimple", w.NamespaceName)))
{
string attr_value = e.Attribute(XName.Get("instr", w.NamespaceName)).Value.Replace(" ", string.Empty).Trim();
string match_value = string.Format(@"DOCPROPERTY {0} \* MERGEFORMAT", customPropertyName).Replace(" ", string.Empty);
if (attr_value.Equals(match_value, StringComparison.CurrentCultureIgnoreCase))
{
XElement firstRun = e.Element(w + "r");
XElement firstText = firstRun.Element(w + "t");
XElement rPr = firstText.Element(w + "rPr");
// Delete everything and insert updated text value
e.RemoveNodes();
XElement t = new XElement(w + "t", rPr, customPropertyValue);
Novacode.Text.PreserveSpace(t);
e.Add(new XElement(firstRun.Name, firstRun.Attributes(), firstRun.Element(XName.Get("rPr", w.NamespaceName)), t));
}
}
#endregion
}
}
public override Paragraph InsertParagraph()
{
Paragraph p = base.InsertParagraph();
p.PackagePart = mainPart;
return p;
}
public override Paragraph InsertParagraph(int index, string text, bool trackChanges)
{
Paragraph p = base.InsertParagraph(index, text, trackChanges);
p.PackagePart = mainPart;
return p;
}
public override Paragraph InsertParagraph(Paragraph p)
{
p.PackagePart = mainPart;
return base.InsertParagraph(p);
}
public override Paragraph InsertParagraph(int index, Paragraph p)
{
p.PackagePart = mainPart;
return base.InsertParagraph(index, p);
}
public override Paragraph InsertParagraph(int index, string text, bool trackChanges, Formatting formatting)
{
Paragraph p = base.InsertParagraph(index, text, trackChanges, formatting);
p.PackagePart = mainPart;
return p;
}
public override Paragraph InsertParagraph(string text)
{
Paragraph p = base.InsertParagraph(text);
p.PackagePart = mainPart;
return p;
}
public override Paragraph InsertParagraph(string text, bool trackChanges)
{
Paragraph p = base.InsertParagraph(text, trackChanges);
p.PackagePart = mainPart;
return p;
}
public override Paragraph InsertParagraph(string text, bool trackChanges, Formatting formatting)
{
Paragraph p = base.InsertParagraph(text, trackChanges, formatting);
p.PackagePart = mainPart;
return p;
}
public Paragraph[] InsertParagraphs(string text)
{
String[] textArray = text.Split('\n');
List paragraphs = new List();
foreach (var textForParagraph in textArray)
{
Paragraph p = base.InsertParagraph(text);
p.PackagePart = mainPart;
paragraphs.Add(p);
}
return paragraphs.ToArray();
}
public override List Paragraphs
{
get
{
List l = base.Paragraphs;
l.ForEach(x => x.PackagePart = mainPart);
return l;
}
}
public override List Tables
{
get
{
List l = base.Tables;
l.ForEach(x => x.mainPart = mainPart);
return l;
}
}
///
/// Create an equation and insert it in the new paragraph
///
public override Paragraph InsertEquation(String equation)
{
Paragraph p = base.InsertEquation(equation);
p.PackagePart = mainPart;
return p;
}
///
/// Insert a chart in document
///
public void InsertChart(Chart chart)
{
// Create a new chart part uri.
String chartPartUriPath = String.Empty;
Int32 chartIndex = 1;
do
{
chartPartUriPath = String.Format
(
"/word/charts/chart{0}.xml",
chartIndex
);
chartIndex++;
} while (package.PartExists(new Uri(chartPartUriPath, UriKind.Relative)));
// Create chart part.
PackagePart chartPackagePart = package.CreatePart(new Uri(chartPartUriPath, UriKind.Relative), "application/vnd.openxmlformats-officedocument.drawingml.chart+xml");
// Create a new chart relationship
String relID = GetNextFreeRelationshipID();
PackageRelationship rel = mainPart.CreateRelationship(chartPackagePart.Uri, TargetMode.Internal, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart", relID);
// Save a chart info the chartPackagePart
using (TextWriter tw = new StreamWriter(chartPackagePart.GetStream(FileMode.Create, FileAccess.Write)))
chart.Xml.Save(tw);
// Insert a new chart into a paragraph.
Paragraph p = InsertParagraph();
XElement chartElement = new XElement(
XName.Get("r", DocX.w.NamespaceName),
new XElement(
XName.Get("drawing", DocX.w.NamespaceName),
new XElement(
XName.Get("inline", DocX.wp.NamespaceName),
new XElement(XName.Get("extent", DocX.wp.NamespaceName), new XAttribute("cx", "5486400"), new XAttribute("cy", "3200400")),
new XElement(XName.Get("effectExtent", DocX.wp.NamespaceName), new XAttribute("l", "0"), new XAttribute("t", "0"), new XAttribute("r", "19050"), new XAttribute("b", "19050")),
new XElement(XName.Get("docPr", DocX.wp.NamespaceName), new XAttribute("id", "1"), new XAttribute("name", "chart")),
new XElement(
XName.Get("graphic", DocX.a.NamespaceName),
new XElement(
XName.Get("graphicData", DocX.a.NamespaceName),
new XAttribute("uri", DocX.c.NamespaceName),
new XElement(
XName.Get("chart", DocX.c.NamespaceName),
new XAttribute(XName.Get("id", DocX.r.NamespaceName), relID)
)
)
)
)
));
p.Xml.Add(chartElement);
}
#region IDisposable Members
///
/// Releases all resources used by this document.
///
///
/// If you take advantage of the using keyword, Dispose() is automatically called for you.
///
/// // Load document.
/// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
/// {
/// // The document is only in memory while in this scope.
///
/// }// Dispose() is automatically called at this point.
///
///
///
/// This example is equilivant to the one above example.
///
/// // Load document.
/// DocX document = DocX.Load(@"C:\Example\Test.docx");
///
/// // Do something with the document here.
///
/// // Dispose of the document.
/// document.Dispose();
///
///
public void Dispose()
{
package.Close();
}
#endregion
}
}