本文介绍了在PDF文件中打开特定页面c#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我的表单加载以下代码时,我打开一个pdf文件:
I open a pdf file when my form is loaded with the following code:
Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
process.StartInfo = startInfo;
startInfo.FileName = @"F:\STAGE\test.pdf";
process.Start();
这可以正常工作,但是现在我要打开一个特定页面.例如文件test.pdf的第5页?有人有主意吗?尝试了一些东西但是没用!
This works fine but now I want to open a specific page. For example page number 5 of the document test.pdf? Does any one have an idea? Tried some stuff but dind't work!
谢谢!
推荐答案
尝试
process.StartInfo.Arguments = "/A \"page=n\" \"F:\\STAGE\\test.pdf"";
将n
更改为所需的页码
这篇关于在PDF文件中打开特定页面c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!