//// 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 template // ProcurementLetterTpl.docx document used by the ReplaceInTemplate sample.publicclassProcurementLetterTpl {publicGcWordDocumentCreateDocx() {GcWordDocument doc = newGcWordDocument(); doc.Load(Path.Combine("Resources", "WordDocs", "ProcurementLetterTpl.docx"));return doc; } }}