JsFrameworkExcerpt.vb
C# VB
'''' This code is part of Document Solutions for Word demos.'' Copyright (c) MESCIUS inc. All rights reserved.''Imports System.IOImports GrapeCity.Documents.Word
'' 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.Public Class JsFrameworkExcerpt Public Function CreateDocx() As GcWordDocument Dim doc = New GcWordDocument() doc.Load(Path.Combine("Resources", "WordDocs", "JsFrameworkExcerpt.docx")) Return doc End FunctionEnd Class