//
// This code is part of GrapeCity Documents for Word samples.
// Copyright (c) GrapeCity, Inc. All rights reserved.
//
using System.IO;
using GrapeCity.Documents.Word;
namespace GcWordWeb.Samples
{
// 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.
public class SampleParagraphs
{
public GcWordDocument CreateDocx()
{
GcWordDocument doc = new GcWordDocument();
doc.Load(Path.Combine("Resources", "WordDocs", "SampleParagraphs.docx"));
return doc;
}
}
}