JsFrameworkExcerpt.cs
- //
- // This code is part of Document Solutions for Word demos.
- // Copyright (c) MESCIUS inc. All rights reserved.
- //
- using System.IO;
- using GrapeCity.Documents.Word;
-
- namespace DsWordWeb.Demos
- {
- // The only point of this sample is to show the original
- // JsFrameworkExcerpt.docx document used by some other samples
- // that demonstrate changing the content of a document.
- public class JsFrameworkExcerpt
- {
- public GcWordDocument CreateDocx()
- {
- GcWordDocument doc = new GcWordDocument();
- doc.Load(Path.Combine("Resources", "WordDocs", "JsFrameworkExcerpt.docx"));
- return doc;
- }
- }
- }
-