我正在为Excel文档的backgorund添加一个图像,以使用
来模仿水印using Microsoft.Office.Interop.Excel;
遍历工作表
foreach (Excel.Worksheet sheet in xlWorkBook.Worksheets)
{
//Add watermark image
sheet.SetBackgroundPicture(wswm_imgpath);
}
但是打印文档时图像不会出现。 如何在打印时包含此背景图像? 知道吗?