This class represents an array of QuadPoints objects.
◆ add()
void com.foxit.sdk.pdf.annots.QuadPointsArray.add |
( |
QuadPoints |
element | ) |
|
Add an element to the end of current array.
- Parameters
-
element | New element to be added to current array.
|
- Returns
- None.
◆ getAt()
QuadPoints com.foxit.sdk.pdf.annots.QuadPointsArray.getAt |
( |
long |
index | ) |
|
Retrieve a copy of the element at position specified by index in current array.
- Parameters
-
index | An index to specify which element is to be retrieved.
|
- Returns
- A copy of an element.
◆ getSize()
long com.foxit.sdk.pdf.annots.QuadPointsArray.getSize |
( |
| ) |
|
Get the size of current array.
- Returns
- The size.
◆ insertAt()
void com.foxit.sdk.pdf.annots.QuadPointsArray.insertAt |
( |
long |
index, |
|
|
QuadPoints |
element |
|
) |
| |
Insert an element before the position specified by index.
- Parameters
-
index | An index to specify where to insert the new element. Valid range: from 0 to (count-1). count is returned by function GetSize() .
|
element | New element to be inserted to current array.
|
- Returns
- None.
◆ removeAll()
void com.foxit.sdk.pdf.annots.QuadPointsArray.removeAll |
( |
| ) |
|
Remove all the element from current array.
- Returns
- None.
◆ removeAt()
void com.foxit.sdk.pdf.annots.QuadPointsArray.removeAt |
( |
long |
index | ) |
|
Remove the element in position specified by index.
- Parameters
-
index | An index to specify which element is to be removed. Valid range: from 0 to (count-1). count is returned by function GetSize() .
|
- Returns
- None.