From what I can see, this is just on the client (javascript) object? I’m looking to do this on the server side. This little example represents what I would like to do but I can’t find anything within the ctldoc object that resembles the pages or extracted text. Do you have a sample of how it works in code?
'read the file into server
Dim ctldoc As New DocViewer
Dim config As New DotnetDaddy.DocumentConfig.PdfConfig
config.AllowCopy = True
ctldoc.OpenDocument("c:\temp\test.pdf", config)
'this is fake code on how I would think it could work
Dim sb As New StringBuilder 'string builder
For Each Page In ctldoc.Pages 'loop through each page
sb.Append(CopyPage(Page)) 'put the text into the stringbuilder
Next