CustomXmlPropertyCollection

CustomXmlPropertyCollection class

表示自定义 XML 属性或智能标记属性的集合。

要了解更多信息,请访问结构化文档标签或内容控制文档文章。

public class CustomXmlPropertyCollection : IEnumerable<CustomXmlProperty>

特性

姓名描述
Count { get; }获取集合中包含的元素数量。
Item { get; }获取具有指定名称的属性。 (2 indexers)

方法

姓名描述
Add(CustomXmlProperty)将属性添加到集合中。
Clear()从集合中删除所有元素。
Contains(string)确定集合是否包含具有给定名称的属性。
GetEnumerator()返回一个枚举器对象,可用于迭代集合中的所有项目。
IndexOfKey(string)返回集合中指定属性的从零开始的索引。
Remove(string)从集合中删除具有指定名称的属性。
RemoveAt(int)删除指定索引处的属性。

评论

物品有CustomXmlProperty对象。

例子

展示如何使用智能标记属性来获取有关智能标记的深入信息。

Document doc = new Document(MyDir + "Smart tags.doc");

// 智能标签出现在 Microsoft Word 文档中,将其文本的一部分识别为某种形式的数据,
// 例如名称、日期或地址,并将其转换为显示紫色点状下划线的超链接。
// 在Word 2003中,我们可以通过“工具”->启用智能标签“自动更正选项...”-> “智能标签”。
// 在我们的输入文档中,Microsoft Word 注册了三个对象作为智能标记。
// 智能标签可以嵌套,因此这个集合包含更多。
SmartTag[] smartTags = doc.GetChildNodes(NodeType.SmartTag, true).OfType<SmartTag>().ToArray();

Assert.AreEqual(8, smartTags.Length);

// 智能标记的“Properties”成员包含其元数据,每种类型的智能标记的元数据都不同。
// “日期”类型智能标签的属性包含其年、月、日。
CustomXmlPropertyCollection properties = smartTags[7].Properties;

Assert.AreEqual(4, properties.Count);

using (IEnumerator<CustomXmlProperty> enumerator = properties.GetEnumerator())
{
    while (enumerator.MoveNext())
    {
        Console.WriteLine($"Property name: {enumerator.Current.Name}, value: {enumerator.Current.Value}");
        Assert.AreEqual("", enumerator.Current.Uri);
    }
}

// 我们还可以通过各种方式访问属性,例如键值对。
Assert.True(properties.Contains("Day"));
Assert.AreEqual("22", properties["Day"].Value);
Assert.AreEqual("2003", properties[2].Value);
Assert.AreEqual(1, properties.IndexOfKey("Month"));

// 下面是从属性集合中删除元素的三种方法。
// 1 - 按索引删除:
properties.RemoveAt(3);

Assert.AreEqual(3, properties.Count);

// 2 - 按名称删除:
properties.Remove("Year");

Assert.AreEqual(2, properties.Count);

// 3 - 立即清除整个集合:
properties.Clear();

Assert.AreEqual(0, properties.Count);

也可以看看