目前我正在使用 Microsoft Word 标签打印实用程序从我的 .NET 应用程序中打印标签。我正在使用以下代码打印标签。
Word.Application oWord;
Word._Document oDoc;
oDoc = oWord.Documents.Add();
var a = oWord.MailingLabel.CreateNewDocument("30 Per Page", "", Type.Missing, false, Type.Missing, Type.Missing, Type.Missing);
oWord.Visible = false;
var table = a.Content.ConvertToTable().Tables[1];
var innertable = table.Columns[1].Cells[1].Range.ConvertToTable();
innertable.Columns[1].Cells[1].Range.Bold = 1;
innertable.Columns[1].Cells[1].Range.Text = "sdadad";
innertable.Columns[1].Cells[1].Range.Font.Bold = 1;
innertable.Columns[1].Cells[1].Range.Font.Color = Word.WdColor.wdColorBlue;
innertable.Columns[1].Cells[1].Range.Font.Size = 15F;
innertable.Columns[1].Cells[1].Range.Font.Name = "Verdana";
innertable.Rows.Add();
innertable.Columns[1].Cells[2].Range.Text = "fsdfsdfsdf";
innertable.Columns[1].Cells[2].Range.Font.Bold = 0;
innertable.Columns[1].Cells[2].Range.Font.Color = Word.WdColor.wdColorBrown;
innertable.Columns[1].Cells[2].Range.Font.Size = 12F;
innertable.Columns[1].Cells[2].Range.Font.Name = "Segoe UI";
var docs=oWord.Documents;
oWord.Visible = true;
现在的问题是这里创建了两个文档。但我只想打开带有标签的文档。
非常感谢您提前...!