Foxit PDF SDK
|
An array of float values. More...
Public Member Functions | |
def | FloatArray () |
Construct a simple object. More... | |
def | Add (newElement) |
Add an element at the tail. Potentially growing the array. More... | |
def | Find (data, iStart) |
Find an element from specified position to last. More... | |
def | GetAt (nIndex) |
This method retrieves an element specified by an index number. More... | |
def | GetSize () |
Get the number of elements in the array. More... | |
def | GetUpperBound () |
Get the upper bound in the array, actually the maximum valid index. More... | |
def | InsertAt (nIndex, newElement, nCount) |
Inset one or more continuous element at specified position. More... | |
def | RemoveAll () |
Clean up the array. More... | |
def | RemoveAt (nIndex, nCount) |
Remove a number of elements at specified position. More... | |
def | SetAt (nIndex, newElement) |
This method overwrites an element specified by an index number. More... | |
def | SetAtGrow (nIndex, newElement) |
Set an element value at specified position. Potentially growing the array. More... | |
def | SetSize (nNewSize, nGrowBy) |
Change the allocated size and the grow amount. More... | |
An array of float values.
def FoxitPDFSDKPython2.FloatArray.FloatArray | ( | ) |
Construct a simple object.
The copy constructor.
Constructor, from an allocator.
Constructor, with another array object.
[in] | other | Another array object. |
[in] | other | The other array template object. |
def FoxitPDFSDKPython2.FloatArray.Add | ( | newElement | ) |
Add an element at the tail. Potentially growing the array.
[in] | newElement | The input element. |
def FoxitPDFSDKPython2.FloatArray.Find | ( | data, | |
iStart | |||
) |
Find an element from specified position to last.
[in] | data | The input element. |
[in] | iStart | Specifies the zero-based index of start element to find. |
def FoxitPDFSDKPython2.FloatArray.GetAt | ( | nIndex | ) |
This method retrieves an element specified by an index number.
[in] | nIndex | Specifies the zero-based index of the element. |
def FoxitPDFSDKPython2.FloatArray.GetSize | ( | ) |
Get the number of elements in the array.
def FoxitPDFSDKPython2.FloatArray.GetUpperBound | ( | ) |
Get the upper bound in the array, actually the maximum valid index.
def FoxitPDFSDKPython2.FloatArray.InsertAt | ( | nIndex, | |
newElement, | |||
nCount | |||
) |
Inset one or more continuous element at specified position.
Inset an array at specified position.
[in] | nIndex | Specifies the zero-based index in the array. |
[in] | newElement | Specifies the element value to insert. |
[in] | nCount | Specifies the count of the element to insert. |
[in] | nStartIndex | Specifies the zero-based index of start element to insert at. |
[in] | pNewArray | The input array. |
def FoxitPDFSDKPython2.FloatArray.RemoveAll | ( | ) |
Clean up the array.
def FoxitPDFSDKPython2.FloatArray.RemoveAt | ( | nIndex, | |
nCount | |||
) |
Remove a number of elements at specified position.
[in] | nIndex | Specifies the zero-based index in the array. |
[in] | nCount | Specifies the count of element to remove. |
def FoxitPDFSDKPython2.FloatArray.SetAt | ( | nIndex, | |
newElement | |||
) |
This method overwrites an element specified by an index number.
[in] | nIndex | Specifies the zero-based index of the element. |
[in] | newElement | An element. |
def FoxitPDFSDKPython2.FloatArray.SetAtGrow | ( | nIndex, | |
newElement | |||
) |
Set an element value at specified position. Potentially growing the array.
[in] | nIndex | Specifies the zero-based index of element in the array. |
[in] | newElement | The input element. |
def FoxitPDFSDKPython2.FloatArray.SetSize | ( | nNewSize, | |
nGrowBy | |||
) |
Change the allocated size and the grow amount.
[in] | nNewSize | The new size in elements expected. |
[in] | nGrowBy | The grow amount in elements expected. This can be -1 for the grow amount unchanged. |