Inserts an ObjType::e_Array object in the Array.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj InsertArray(
int pos
)
Public Function InsertArray (
pos As Integer
) As Obj
public:
virtual Obj^ InsertArray(
[InAttribute] int pos
) sealed
function InsertArray(pos);
Parameters
- pos
- Type: SystemInt32
The location in the Array to insert the object . The object is inserted
before the specified location. The first element in an Array has a pos of
zero. If pos >= Array->Length(), appends obj to Array.
Return Value
Type:
Obj
A newly created Array object.
See Also