The sample source code below is for converting all pages of PDF document to plain HTML in Visual Basic .NET with Bytescout PDF To HTML SDK.
VB.NET
Imports Bytescout.PDF2HTML Class Program Friend Shared Sub Main(<span data-scayt_word="args" data-scaytid="2">args</span> As String()) ' Create Bytescout.PDF2HTML.HTMLExtractor instance Dim extractor As New <span data-scayt_word="HTMLExtractor" data-scaytid="3">HTMLExtractor</span>() extractor.RegistrationName = "demo" extractor.RegistrationKey = "demo" ' Load sample PDF document extractor.LoadDocumentFromFile("sample2.pdf") ' Set plain HTML extraction mode extractor.ExtractionMode = HTMLExtractionMode.PlainHTML ' Save extracted HTML to file extractor.SaveHtmlToFile("output.html") ' Open output file in default associated application System.Diagnostics.Process.Start("output.html") End Sub End Class