|
Foxit PDF SDK for HarmonyOS
3.0
|
An array of envelope objects. More...
Public Member Functions | |
| Add (element) | |
| Add an element to the end of current array. More... | |
| constructor () | |
| Constructor. | |
| constructor (r) | |
| GetAt (index) | |
| Retrieve a copy of the element at position specified by index in current array. More... | |
| GetSize () | |
| Get the size of elements in current array. More... | |
| InsertAt (index, element) | |
| Insert an element before the position specified by index. More... | |
| RemoveAll () | |
| Remove all the elements from current array. More... | |
| RemoveAt (index) | |
| Remove the element in position specified by index. More... | |
Public Member Functions inherited from NativeObjectWrapper | |
| constructor (r) | |
| GetPointerAsNumber () | |
An array of envelope objects.
| EnvelopeArray.Add | ( | element | ) |
Add an element to the end of current array.
| [in] | element | New element to be added to current array. |
| EnvelopeArray.constructor | ( | r | ) |
@constructor
| {NativeObjectReference} | r - The native object reference to wrap |
@description Creates a new wrapper instance around a native C++ object. The wrapper manages the object's lifecycle according to the ownership rules.
| EnvelopeArray.GetAt | ( | index | ) |
Retrieve a copy of the element at position specified by index in current array.
| [in] | index | An index to specify which element is to be retrieved. |
| EnvelopeArray.GetSize | ( | ) |
Get the size of elements in current array.
| EnvelopeArray.InsertAt | ( | index | , |
| element | |||
| ) |
Insert an element before the position specified by index.
| [in] | index | An index to specify where to insert the new element. Valid range: from 0 to (size-1). size is the size of elements in current array. |
| [in] | element | New element to be inserted to current array. |
| EnvelopeArray.RemoveAll | ( | ) |
Remove all the elements from current array.
| EnvelopeArray.RemoveAt | ( | index | ) |
Remove the element in position specified by index.
| [in] | index | An index to specify which element is to be removed. Valid range: from 0 to (size-1). size is the size of elements in current array. |