接口 IDocumentPropertyCollection
public interface IDocumentPropertyCollection
表示文档属性的集合。
-
方法概要
修饰符和类型方法说明void
clear()
移除集合中的所有属性。boolean
确定指定名称的文档属性是否包含在IDocumentPropertyCollection
中。get
(int index) 返回集合中的IDocumentProperty
对象。返回指定名称的IDocumentProperty
对象。int
getCount()
返回集合中的文档属性数量。int
获取按名称属性的索引。void
移除集合中指定名称的属性。void
removeAt
(int index) 移除指定索引处的属性。
-
方法详细资料
-
getCount
int getCount()返回集合中的文档属性数量。 -
get
返回指定名称的IDocumentProperty
对象。- 参数:
name
- 指定集合中元素的名字。
-
get
返回集合中的IDocumentProperty
对象。- 参数:
index
- 指定集合中元素的索引。
-
contains
确定指定名称的文档属性是否包含在IDocumentPropertyCollection
中。- 参数:
name
- 文档属性名称。- 返回:
- 文档属性名称是否被包含。
-
clear
void clear()移除集合中的所有属性。 -
indexOf
获取按名称属性的索引。- 参数:
name
- 属性的不区分大小写的名称。- 返回:
- 基于零的索引。如果未找到,则为负值。
-
remove
移除集合中指定名称的属性。- 参数:
name
- 属性的不区分大小写的名称。
-
removeAt
void removeAt(int index) 移除指定索引处的属性。- 参数:
index
- 基于零的索引。
-