Word テンプレートを読み取り、特定の情報でそれを変更するプログラムを作成しました。しかし、ドキュメントを保存せずに印刷したいと思います。
Word.Application wordApp = new Word.Application();
Document wordDoc = new Document();
印刷または印刷プレビューするにはどうすればよいwordDoc
ですか?
document.PrintOut()
メソッドが探しているもののようです。
いくつかの例については、このリンクを確認してください。
印刷ダイアログを使用できます
using (PrintDialog pd = new PrintDialog())
{
pd.ShowDialog();
ProcessStartInfo info = new ProcessStartInfo(@"C:\documents\DOCNAME.DOC");
info.Verb = "PrintTo";
info.Arguments = pd.PrinterSettings.PrinterName;
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);
}