Description:
Basic array object. An array object is a one-dimensional collection of objects arranged sequentially. Unlike arrays in many other computer languages, PDF arrays may be heterogeneous; that is, an array's elements may be any combination of numbers, strings, dictionaries, or any other objects, including other arrays.
Interface:
IIGPDFBasArray extends IIGPDFBasObj
Members:
Methods
Get Method |
Gets the specified element from an array. |
Put Method |
Puts the specified object into the specified location in an array. |
PutBool Method |
Puts the specified boolean value into the specified location in an array. |
PutFixed Method |
Puts the specified fixed value into the specified location in an array. |
PutInt Method |
Puts the specified integer value into the specified location in an array. |
PutName Method |
Puts the name integer value into the specified location in an array. |
Remove Method |
Finds the first element, if any, equal to the specified object and removes it from the array. |
RemoveNth Method |
Checks whether the position is within the array bounds and then removes it from the array and moves each subsequent element to the slot with the next smaller index and decrements the array's length by 1. |