接口 IDocumentPropertyCollection

所有已知子接口:
IBuiltInDocumentPropertyCollection, ICustomDocumentPropertyCollection

public interface IDocumentPropertyCollection
表示文档属性的集合。
  • 方法详细资料

    • getCount

      int getCount()
      返回集合中的文档属性数量。
    • get

      返回指定名称的 IDocumentProperty 对象。
      参数:
      name - 指定集合中元素的名字。
    • get

      IDocumentProperty get(int index)
      返回集合中的IDocumentProperty对象。
      参数:
      index - 指定集合中元素的索引。
    • contains

      boolean contains(String name)
      确定指定名称的文档属性是否包含在 IDocumentPropertyCollection 中。
      参数:
      name - 文档属性名称。
      返回:
      文档属性名称是否被包含。
    • clear

      void clear()
      移除集合中的所有属性。
    • indexOf

      int indexOf(String name)
      获取按名称属性的索引。
      参数:
      name - 属性的不区分大小写的名称。
      返回:
      基于零的索引。如果未找到,则为负值。
    • remove

      void remove(String name)
      移除集合中指定名称的属性。
      参数:
      name - 属性的不区分大小写的名称。
    • removeAt

      void removeAt(int index)
      移除指定索引处的属性。
      参数:
      index - 基于零的索引。