Inherits SystemIDisposable.
This class represents an array of QuadPoints objects.
◆ Add()
void foxit.pdf.annots.QuadPointsArray.Add |
( |
QuadPoints |
element | ) |
|
|
inline |
Add an element to the end of current array.
- Parameters
-
element | New element to be added to current array.
|
- Returns
- None.
◆ GetAt()
QuadPoints foxit.pdf.annots.QuadPointsArray.GetAt |
( |
uint |
index | ) |
|
|
inline |
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()
uint foxit.pdf.annots.QuadPointsArray.GetSize |
( |
| ) |
|
|
inline |
Get the size of current array.
- Returns
- The size.
◆ InsertAt()
void foxit.pdf.annots.QuadPointsArray.InsertAt |
( |
uint |
index, |
|
|
QuadPoints |
element |
|
) |
| |
|
inline |
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 foxit.pdf.annots.QuadPointsArray.RemoveAll |
( |
| ) |
|
|
inline |
Remove all the element from current array.
- Returns
- None.
◆ RemoveAt()
void foxit.pdf.annots.QuadPointsArray.RemoveAt |
( |
uint |
index | ) |
|
|
inline |
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.