Foxit PDF SDK
|
Public Member Functions | |
GetSize() | Add (element) |
Get the size of elements in current array. More... | |
constructor () | |
Constructor. | |
InsertAt (index, element) | |
Insert an element before the position specified by index. More... | |
RemoveAll () | |
Remove all the element from current array. More... | |
RemoveAt (index) | |
Remove the element in position specified by index. More... | |
This class represents an array of choice options.
GetSize () FSDK.ChoiceOptionArray.Add | ( | element | ) |
Get the size of elements in current array.
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. |
Add an element to the end of current array.
[in] | element | New element to be added to current array. |
FSDK.ChoiceOptionArray.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. |
FSDK.ChoiceOptionArray.RemoveAll | ( | ) |
Remove all the element from current array.
FSDK.ChoiceOptionArray.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. |