GroupDocsGists
10/19/2017 - 11:13 AM

RenderWordDocumentAsPDFWithTrackedChanges.vb

' For complete examples and data files, please go to https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET
' Create/initialize image handler 
Dim imageHandler As New ViewerImageHandler(Utilities.GetConfigurations())

' Set pdf options to get original file without annotations
Dim options As New PdfFileOptions()
options.WordsOptions.ShowTrackedChanges = True
' Default value is false
' Call GetPdfFile to get FileContainer type object which contains the stream of pdf file.
Dim container As FileContainer = imageHandler.GetPdfFile(DocumentName, options)

'Change the extension of the file and assign to a string type variable filename
Dim filename As [String] = Path.GetFileNameWithoutExtension(DocumentName) + ".pdf"

'Save each image at disk
Utilities.SaveFile(filename, container.Stream)