Foxit PDF SDK
|
Inherits FoxitPDFSDKPython3._object.
Public Member Functions | |
def | NoteArray () |
Constructor. More... | |
def | Add (element) |
Add an element to the end of current array. More... | |
def | GetAt (index) |
Retrieve a copy of the element at position specified by index in current array. More... | |
def | GetSize () |
Get the size of elements in current array. More... | |
def | InsertAt (index, element) |
Insert an element before the position specified by index. More... | |
def | RemoveAll () |
Remove all the element from current array. More... | |
def | RemoveAt (index) |
Remove the element in position specified by index. More... | |
This class represents an array of note annotation objects.
def FoxitPDFSDKPython3.NoteArray.NoteArray | ( | ) |
Constructor.
Constructor, with another array object.
[in] | other | Another array object. |
def FoxitPDFSDKPython3.NoteArray.Add | ( | element | ) |
Add an element to the end of current array.
[in] | element | New element to be added to current array. |
def FoxitPDFSDKPython3.NoteArray.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. |
def FoxitPDFSDKPython3.NoteArray.GetSize | ( | ) |
Get the size of elements in current array.
def FoxitPDFSDKPython3.NoteArray.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. |
def FoxitPDFSDKPython3.NoteArray.RemoveAll | ( | ) |
Remove all the element from current array.
def FoxitPDFSDKPython3.NoteArray.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. |