Spire.Doc 教程:用C#識別Word中的合併字段名稱

咱們常常遇到一個場景,就是須要將數據合併到由其餘人建立的合併字段,咱們不能肯定合併字段的名稱。 因此爲了完成郵件合併的目的,首先咱們須要讀取全部合併字段的名稱。html

Spire.Doc.Reporting命名空間中的MailMerge類公開了如下方法,該方法返回一個word文檔中的合併字段名稱或組(區域)名稱的集合。htm

  • public string [] GetMergeFieldNames():返回全部合併字段名稱的集合。
  • public string [] GetMergeFieldNames(string groupName):返回特定組中合併字段名稱的集合。
  • public string [] GetMergeGroupNames():返回組名的集合。

了更好的演示,咱們使用如下示例文檔:blog

圖片1

如下示例詳細說明了如何讀取上述單詞文檔中的組名稱和合並字段。圖片

//Creates Document instance
Document document = new Document();
//Loads the word document
document.LoadFromFile("MergeFields.docx");
//Gets the collection of group names
string[] GroupNames = document.MailMerge.GetMergeGroupNames();
//Gets the collection of merge field names in a specific group
string[] MergeFieldNamesWithinRegion = document.MailMerge.GetMergeFieldNames("Products");
// Gets the collection of all the merge field names
string[] MergeFieldNames = document.MailMerge.GetMergeFieldNames();
Console.WriteLine("----------------Group Names-----------------------------------------");
for (int i = 0; i < GroupNames.Length; i++)
{
Console.WriteLine(GroupNames[i]);
}
Console.WriteLine("----------------Merge field names within a specific group-----------");
for (int j = 0; j < MergeFieldNamesWithinRegion.Length; j++)
{
Console.WriteLine(MergeFieldNamesWithinRegion[j]);
}
Console.WriteLine("----------------All of the merge field names------------------------");
for (int k = 0; k < MergeFieldNames.Length; k++)
{
Console.WriteLine(MergeFieldNames[k]);
}

截圖:ci

圖片2

慧都控件網文檔

相關文章
相關標籤/搜索