Foxit PDF SDK
com.foxit.sdk.DialogDescriptionElementArray类 参考

Public 成员函数

 DialogDescriptionElementArray ()
 构造函数。
 
 DialogDescriptionElementArray (DialogDescriptionElementArray other)
 拷贝构造函数,使用另一个数组对象。 更多...
 
void add (DialogDescriptionElement element)
 向当前数组的末尾添加一个元素。 更多...
 
synchronized void delete ()
 直接清除C++相关资源。 更多...
 
DialogDescriptionElement getAt (long index)
 检索当前数组中由索引指定位置的元素副本。 更多...
 
long getSize ()
 获取当前数组中元素的大小。 更多...
 
void insertAt (long index, DialogDescriptionElement element)
 在由索引指定的位置之前插入一个元素。 更多...
 
void removeAll ()
 从当前数组中移除所有元素。 更多...
 
void removeAt (long index)
 移除由索引指定位置的元素。 更多...
 

详细描述

此类表示对话框描述元素数组。

构造及析构函数说明

◆ DialogDescriptionElementArray()

com.foxit.sdk.DialogDescriptionElementArray.DialogDescriptionElementArray ( DialogDescriptionElementArray  other)

拷贝构造函数,使用另一个数组对象。

参数
[in]other另一个数组对象。

成员函数说明

◆ add()

void com.foxit.sdk.DialogDescriptionElementArray.add ( DialogDescriptionElement  element)

向当前数组的末尾添加一个元素。

参数
[in]element要添加到当前数组的新元素。
返回
无。

◆ delete()

synchronized void com.foxit.sdk.DialogDescriptionElementArray.delete ( )

直接清除C++相关资源。

返回
无。
注解
一旦这个接口被调用,这个对象将不能再被使用。

◆ getAt()

DialogDescriptionElement com.foxit.sdk.DialogDescriptionElementArray.getAt ( long  index)

检索当前数组中由索引指定位置的元素副本。

参数
[in]index指定要检索的元素的索引。
返回
元素的副本。

◆ getSize()

long com.foxit.sdk.DialogDescriptionElementArray.getSize ( )

获取当前数组中元素的大小。

返回
大小。

◆ insertAt()

void com.foxit.sdk.DialogDescriptionElementArray.insertAt ( long  index,
DialogDescriptionElement  element 
)

在由索引指定的位置之前插入一个元素。

参数
[in]index指定插入新元素位置的索引。有效范围:从 0 到 (size-1)。 size 是当前数组中元素的大小。
[in]element要插入到当前数组的新元素。
返回
无。

◆ removeAll()

void com.foxit.sdk.DialogDescriptionElementArray.removeAll ( )

从当前数组中移除所有元素。

返回
无。

◆ removeAt()

void com.foxit.sdk.DialogDescriptionElementArray.removeAt ( long  index)

移除由索引指定位置的元素。

参数
[in]index指定要移除的元素的索引。有效范围:从 0 到 (size-1)。 size 是当前数组中元素的大小。
返回
无。