0

我有一个包含复选框控件的 Word 2013 文档。我已将此复选框的Tag属性设置为fooCheckBox

显示 Word 2013 复选框属性的屏幕截图

现在我想使用 Open XML SDK 2.5 以编程方式查找和操作该特定复选框。我知道如何查找/枚举复选框,但我不知道如何SdtContentCheckBox通过其Tag属性找到特定的:

给定 a ,我如何通过其Tag属性WordprocessingDocument doc检索特定的 's?SdtContentCheckBox

(我有工作代码,我将其作为答案发布(见下文)。但是,我不知道这是否是正确的方法;所以如果有人知道更好、更合适的方法,我想看看它是如何完成的。)

4

1 回答 1

3

显然,一个SdtContentCheckBox对象的.Parent属性引用了一个SdtProperty可以查询Tag后代的集合。

我不明白这个对象建模背后的逻辑,但它可以用来完成工作:

// using DocumentFormat.OpenXml.Packaging;
// using System.Diagnostics;
// using System.Linq;

SdtContentCheckBox TryGetCheckBoxByTag(WordprocessingDocument doc, string tag)
{
    foreach (var checkBox in doc.MainDocumentPart.Document.Descendants<SdtContentCheckBox>())
    {
        var tagProperty = checkBox.Parent.Descendants<Tag>().FirstOrDefault();
        if (tagProperty != null)
        {
            Debug.Assert(tagProperty.Val != null);
            if (tagProperty.Val.Value == tag)
            {
                // a checkbox with the given tag property was found
                return checkBox;
            }
        }
    }
    // no checkbox with the given tag property was found
    return null;
}
于 2015-06-15T15:35:56.773 回答