//// This code is part of Document Solutions for Word demos.// Copyright (c) MESCIUS inc. All rights reserved.//usingSystem.IO;usingGrapeCity.Documents.Word; namespaceDsWordWeb.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.publicclassJsFrameworkExcerpt {publicGcWordDocumentCreateDocx() {GcWordDocument doc = newGcWordDocument(); doc.Load(Path.Combine("Resources", "WordDocs", "JsFrameworkExcerpt.docx"));return doc; } }}