Ancestor type: IProperty
This type represents an array in PDF document. It hold zero or more values indexed by positive integer, starting from zero. Values can be of any type, either simple types (int, bool, float, string) or complex types (Dict, Array)
void add(int index,IProperty ip)
Insert element at given index in array
void add(int index,string ip)
Insert String element at given index in array
void add(int index,int ip)
Insert Int element at given index in array
Append element at end of array
Append String element at end of array
Append Int element at end of array
CObject child(string name)
Get Dict/Array property recursively Will take the name as slash-separated list of childs to traverse to get to target property, going through Dicts and Arrays. Any references on the way are automatically dereferenced
Return size of this array (number of elements)
void delProperty(int index)
Delete element with given index from this array. Elements with higher index (if any) are shifted to occupy the space
Return string representation of this array
CObject property(int index)
Get element with given index from this array