0

通过利用这个

Application app = new Application();

Document doc = app.Documents.Open(path, ReadOnly: false, Visible: false);

var test = doc.SelectContentControlsByTag("CK");

我得到每个带有标签“CK”的内容控件,在我的例子中它只有一个。如何让内容脱离测试?

4

1 回答 1

0

通过使用这个来工作:

 using (WordprocessingDocument doc =
                    WordprocessingDocument.Open(path, false))
            {

                List<SdtBlock> sdtSubTable = doc.MainDocumentPart.Document.Body.Descendants<SdtBlock>().Where
                 (r => r.SdtProperties.GetFirstChild<Tag>().Val.Value.Equals(tag)).ToList();

               
                return sdtSubTable[0].SdtContentBlock.InnerText;
            }
于 2020-08-18T07:54:18.763 回答