PrintDocument将文档名称发送到打印机

时间:2013-12-03 03:41:19

标签: c# printing

使用C#和PrintDocument()类,是否有人知道在将打印作业发送到打印机时如何包含文档名称?如果文档名称出现在LCD上,则它始终为空白。

1 个答案:

答案 0 :(得分:1)

来自MSDN

  

PrintDocument.DocumentName:获取或设置打印文档时要显示的文档名称(例如,在打印状态对话框或打印机队列中)。

代码示例:

// Provide a friendly name, set the page number, and print the document.
printDoc.DocumentName = "My Presentation";