Foxit PDF SDK
|
An array of RectF objects. More...
Public Member Functions | |
Add (ewElement) | |
Add an element at the tail. Potentially growing the array. More... | |
constructor () | |
Construct a rect not initialized. | |
Find (data, iStart) | |
Find an element from specified position to last. More... | |
GetAt (nIndex) | |
This method retrieves an element specified by an index number. More... | |
GetSize () | |
Get the number of elements in the array. More... | |
GetUpperBound () | |
Get the upper bound in the array, actually the maximum valid index. More... | |
InsertAt (nIndex, newElement, nCount) | |
Inset one or more continuous element at specified position. More... | |
InsertAt (nStartIndex, pNewArray) | |
Inset an array at specified position. More... | |
RemoveAll () | |
Clean up the array. More... | |
RemoveAt (nIndex, nCount) | |
Remove a number of elements at specified position. More... | |
SetAt (nIndex, newElement) | |
This method overwrites an element specified by an index number. More... | |
SetAtGrow (nIndex, newElement) | |
Set an element value at specified position. Potentially growing the array. More... | |
SetSize (nNewSize, nGrowBy) | |
Change the allocated size and the grow amount. More... | |
An array of RectF objects.
FSDK.RectFArray.Add | ( | ewElement | ) |
Add an element at the tail. Potentially growing the array.
[in] | newElement | The input element. |
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. |
FSDK.RectFArray.GetAt | ( | nIndex | ) |
This method retrieves an element specified by an index number.
[in] | nIndex | Specifies the zero-based index of the element. |
FSDK.RectFArray.GetSize | ( | ) |
Get the number of elements in the array.
FSDK.RectFArray.GetUpperBound | ( | ) |
Get the upper bound in the array, actually the maximum valid index.
FSDK.RectFArray.InsertAt | ( | nIndex | , |
newElement | , | ||
nCount | |||
) |
Inset one or more continuous element 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. |
FSDK.RectFArray.InsertAt | ( | nStartIndex | , |
pNewArray | |||
) |
Inset an array at specified position.
[in] | nStartIndex | Specifies the zero-based index of start element to insert at. |
[in] | pNewArray | The input array. |
FSDK.RectFArray.RemoveAll | ( | ) |
Clean up the array.
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. |
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. |
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. |
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. |