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

    文檔首頁>>E-iceblue中文文檔>>填寫 Word 文檔中的表單字段

    填寫 Word 文檔中的表單字段


    Spire.Doc for .NET是一款專門對 Word 文檔進(jìn)行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗(yàn)Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。 

    E-iceblue 功能類庫Spire 系列文檔處理組件均由中國本土團(tuán)隊(duì)研發(fā),不依賴第三方軟件,不受其他國家的技術(shù)或法律法規(guī)限制,同時(shí)適配國產(chǎn)操作系統(tǒng)如中科方德、中標(biāo)麒麟等,兼容國產(chǎn)文檔處理軟件 WPS(如 .wps/.et/.dps 等格式 

    Spire.Doc for.NET 最新下載

    我們已經(jīng)演示了如何創(chuàng)建表單域。本文主要向您展示開發(fā)人員如何使用獨(dú)立的.NET Word 組件 Spire.Doc僅通過 4 個(gè)簡單的步驟在 C# 中填寫 Word 文檔中的表單字段。

    確保 Spire.Doc for .NET 已正確安裝,然后在下載的 Bin 文件夾中添加 Spire.Doc.dll 作為參考,路徑如下:“..\Spire.Doc\Bin\NET4.0\ Spire.Doc。 dll”。以下是開發(fā)人員如何使用 Spire.Doc 填寫表單字段的詳細(xì)信息:

    第一步打開需要填寫數(shù)據(jù)的表格。

    [C#]


    //Create word document
    Document document = new Document(@"..\..\..\Data\UserForm.doc");


    第 2 步加載將填寫表格的數(shù)據(jù)。

    [C#]


    //Fill data from XML file
    using (Stream stream = File.OpenRead(@"..\..\..\Data\User.xml"))
    {
    XPathDocument xpathDoc = new XPathDocument(stream);
    XPathNavigator user = xpathDoc.CreateNavigator().SelectSingleNode("/user");


    第 3 步使用加載的數(shù)據(jù)填寫表格。

    [C#]


    //fill data
    foreach (FormField field in document.Sections[0].Body.FormFields)
    {
    String path = String.Format("{0}/text()", field.Name);
    XPathNavigator propertyNode = user.SelectSingleNode(path);
    if (propertyNode != null)
    {
    switch (field.Type)
    {
    case FieldType.FieldFormTextInput:
    field.Text = propertyNode.Value;
    break;
    
    case FieldType.FieldFormDropDown:
    DropDownFormField combox = field as DropDownFormField;
    for(int i = 0; i < combox.DropDownItems.Count; i++)
    {
    if (combox.DropDownItems[i].Text == propertyNode.Value)
    {
    combox.DropDownSelectedIndex = i;
    break;
    }
    if (field.Name == "country" && combox.DropDownItems[i].Text == "Others")
    {
    combox.DropDownSelectedIndex = i;
    }
    }
    break;
    
    case FieldType.FieldFormCheckBox:
    if (Convert.ToBoolean(propertyNode.Value))
    {
    CheckBoxFormField checkBox = field as CheckBoxFormField;
    checkBox.Checked = true;
    }
    break;
    }
    }
    }
    }


    第 4 步將文檔保存為 XML 或 Microsoft Word 格式的文件。

    [C#]


    //Save doc file
    document.SaveToFile("Sample.doc",FileFormat.Doc);


    有效截圖

    填寫表格字段

    填寫表單域的完整源代碼:

    [C#]


    namespace FillFormField
    {
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }
    
    private void button1_Click(object sender, EventArgs e)
    {
    //open form
    Document document = new Document(@"..\..\..\..\..\..\Data\UserForm.doc");
    
    //load data
    using (Stream stream = File.OpenRead(@"..\..\..\..\..\..\Data\User.xml"))
    {
    XPathDocument xpathDoc = new XPathDocument(stream);
    XPathNavigator user = xpathDoc.CreateNavigator().SelectSingleNode("/user");
    
    //fill data
    foreach (FormField field in document.Sections[0].Body.FormFields)
    {
    String path = String.Format("{0}/text()", field.Name);
    XPathNavigator propertyNode = user.SelectSingleNode(path);
    if (propertyNode != null)
    {
    switch (field.Type)
    {
    case FieldType.FieldFormTextInput:
    field.Text = propertyNode.Value;
    break;
    
    case FieldType.FieldFormDropDown:
    DropDownFormField combox = field as DropDownFormField;
    for(int i = 0; i < combox.DropDownItems.Count; i++)
    {
    if (combox.DropDownItems[i].Text == propertyNode.Value)
    {
    combox.DropDownSelectedIndex = i;
    break;
    }
    if (field.Name == "country" && combox.DropDownItems[i].Text == "Others")
    {
    combox.DropDownSelectedIndex = i;
    }
    }
    break;
    
    case FieldType.FieldFormCheckBox:
    if (Convert.ToBoolean(propertyNode.Value))
    {
    CheckBoxFormField checkBox = field as CheckBoxFormField;
    checkBox.Checked = true;
    }
    break;
    }
    }
    }
    }
    
    //Save doc file.
    document.SaveToFile("Sample.doc",FileFormat.Doc);
    
    //Launching the MS Word file.
    WordDocViewer("Sample.doc");
    }
    
    private void WordDocViewer(string fileName)
    {
    try
    {
    System.Diagnostics.Process.Start(fileName);
    }
    catch { }
    }
    }
    }

    歡迎下載|體驗(yàn)更多E-iceblue產(chǎn)品

    獲取更多信息請咨詢慧都在線客服  ;技術(shù)交流Q群(767755948)


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    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); })();