• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁(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ì)信息。

    Spire.Doc for.NET 最新下載

    第 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);

    郵件合并的有效截圖

    如何創(chuàng)建郵件合并和合并文本值

    完整代碼

    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)咨詢慧都在線客服  

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();