//// 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 // SampleParagraphs.docx document used by some other samples // that demonstrate changing the content of a document.publicclassSampleParagraphs {publicGcWordDocumentCreateDocx() {GcWordDocument doc = newGcWordDocument(); doc.Load(Path.Combine("Resources", "WordDocs", "SampleParagraphs.docx"));return doc; } }}