You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sub Main()
Dim options As New PdfRendererOptions()
options.Author = "David Brent"
options.Title = "How to Motivate Your Staff"
options.Subject = "Management Guide"
options.EnableModify = False
options.EnableAdd = False
options.EnableCopy = False
options.EnablePrinting = True
options.OwnerPassword = "slough"
Dim driver As FonetDriver = FonetDriver.Make
driver.Options = options
driver.Render("input.fo", "output.pdf")
End Sub