我使用“Adobe Acrobat 7.0 Browser Control Type Library 1.0”控件在我的vb.net应用程序中查看PDF。我希望它只显示没有菜单和工具栏的PDF。我使用了以下代码:
AxAcroPDF1.LoadFile("C:\ShippingForm.pdf")
AxAcroPDF1.src = "C:\ShippingForm.pdf"
AxAcroPDF1.setShowToolbar(False)
AxAcroPDF1.setView("fitH")
AxAcroPDF1.setLayoutMode("SinglePage")
AxAcroPDF1.setShowScrollbars(False)
AxAcroPDF1.Show()
我仍然在面板左侧看到导航面板。有没有人知道哪种方法会禁用此方法或者所有方法的列表?谷歌搜索没有让我到任何地方。