我尝试打开Adobe Acrobat Reader,然后跳转到书签。但它不适用于以下代码:
System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
myProcess.StartInfo.FileName = "acrord32.exe";
myProcess.StartInfo.Arguments = "/A \"nameddest=S2\" C:\\temp\\xxx.pdf";
myProcess.Start();
我该怎么做? - 重要提示:我必须使用Acrobat Reader而不是Acrobat。
当我使用page=2
作为参数时,它可以正常工作。但不是最有名的。
当我打开pdf时,我在第二页看到S2作为书签。