我有一个文档,我要使用下面的 c# 代码将其发送打印
p.StartInfo = new ProcessStartInfo()
{
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden,
Verb = "print",
FileName = FileToPrintPath//put the correct path here
};
p.Start();
现在,我有一个条件,我想打印从页码2到5. 我怎样才能做到这一点?
慕的地8271018
相关分类