|
Foxit PDF SDK
|
An array of RectF objects. More...
Public Member Functions | |
| 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 | 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 RectF objects.
| def fsdk.RectFArray.Add | ( | newElement | ) |
Add an element at the tail. Potentially growing the array.
| [in] | newElement | The input element. |
| def fsdk.RectFArray.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 fsdk.RectFArray.GetAt | ( | nIndex | ) |
This method retrieves an element specified by an index number.
| [in] | nIndex | Specifies the zero-based index of the element. |
| def fsdk.RectFArray.GetSize | ( | ) |
Get the number of elements in the array.
| def fsdk.RectFArray.GetUpperBound | ( | ) |
Get the upper bound in the array, actually the maximum valid index.
| def fsdk.RectFArray.RemoveAll | ( | ) |
Clean up the array.
| def fsdk.RectFArray.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 fsdk.RectFArray.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 fsdk.RectFArray.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 fsdk.RectFArray.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. |