View the JsFrameworkExcerpt.docx used by other samples

DOCX PDF TIFF SVG JPG PNG C# VB
JsFrameworkExcerpt.vb
  1. ''
  2. '' This code is part of Document Solutions for Word demos.
  3. '' Copyright (c) MESCIUS inc. All rights reserved.
  4. ''
  5. Imports System.IO
  6. Imports GrapeCity.Documents.Word
  7.  
  8. '' The only point of this sample is to show the original
  9. '' JsFrameworkExcerpt.docx document used by some other samples
  10. '' that demonstrate changing the content of a document.
  11. Public Class JsFrameworkExcerpt
  12. Public Function CreateDocx() As GcWordDocument
  13. Dim doc = New GcWordDocument()
  14. doc.Load(Path.Combine("Resources", "WordDocs", "JsFrameworkExcerpt.docx"))
  15. Return doc
  16. End Function
  17. End Class
  18.