ProcurementLetterTpl.vb
''
'' This code is part of Document Solutions for Word demos.
'' Copyright (c) MESCIUS inc. All rights reserved.
''
Imports System.IO
Imports GrapeCity.Documents.Word

'' The only point of this sample Is to show the template
'' ProcurementLetterTpl.docx document used by the ReplaceInTemplate sample.
Public Class ProcurementLetterTpl
    Public Function CreateDocx() As GcWordDocument
        Dim doc = New GcWordDocument()
        doc.Load(Path.Combine("Resources", "WordDocs", "ProcurementLetterTpl.docx"))
        Return doc
    End Function
End Class