文檔首頁(yè)>>E-iceblue中文文檔>>創(chuàng)建郵件合并和合并文本值
創(chuàng)建郵件合并和合并文本值
郵件合并是 Spire.Doc 提供的最重要的功能之一,使開(kāi)發(fā)人員能夠創(chuàng)建報(bào)告并合并數(shù)據(jù)。本文將演示如何在 Spire.Doc 的幫助下創(chuàng)建郵件合并模板,然后將文本值合并到 C# 中的模板。
以下是如何創(chuàng)建郵件合并并將數(shù)據(jù)合并到其中的詳細(xì)信息。
第 1 步:創(chuàng)建一個(gè)新的 Word 文檔并添加部分和段落。
Document doc = new Document(); Section sec = doc.AddSection(); Paragraph para = sec.AddParagraph();
第 2 步:在段落中添加兩個(gè)郵件合并模板。
para.AppendText("Quantity: "); para.AppendField("Quantity", FieldType.FieldMergeField); para.AppendBreak( BreakType.LineBreak); para.AppendText("Date: "); para.AppendField("Date", FieldType.FieldMergeField);
第 3 步:通過(guò)字段名設(shè)置郵件合并模板的值。
string[] fieldName = { "Quantity", "Date"}; string[] fieldValue = { "1800", DateTime.Now .ToShortDateString()};
第 4 步:將指定的值合并到模板中。
doc.MailMerge.Execute(fieldName, fieldValue);
第 5 步:將文檔保存到文件中。
doc.SaveToFile("result.docx", FileFormat.Docx);
郵件合并的有效截圖:
完整代碼:
using Spire.Doc; using Spire.Doc.Documents; using System; namespace MailMerge { class Program { static void Main(string[] args) { Document doc = new Document(); Section sec = doc.AddSection(); Paragraph para = sec.AddParagraph(); para.AppendText("Quantity: "); para.AppendField("Quantity", FieldType.FieldMergeField); para.AppendBreak(BreakType.LineBreak); para.AppendText("Date: "); para.AppendField("Date", FieldType.FieldMergeField); string[] fieldName = { "Quantity", "Date" }; string[] fieldValue = { "1800", DateTime.Now.ToShortDateString() }; doc.MailMerge.Execute(fieldName, fieldValue); doc.SaveToFile("result.docx", FileFormat.Docx); } }
歡迎下載|體驗(yàn)更多E-iceblue產(chǎn)品
如需獲取更多產(chǎn)品相關(guān)信息請(qǐng)咨詢慧都在線客服