Inserts an existing Obj in this Array.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj Insert(
int pos,
Obj value
)
Public Function Insert (
pos As Integer,
value As Obj
) As Obj
public:
virtual Obj^ Insert(
[InAttribute] int pos,
[InAttribute] Obj^ value
) sealed
function Insert(pos, value);
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.
- value
- Type: pdftron.SDFObj
The value to be inserted into the dictionary. If 'value' is
indirect (i.e. is a shared) object it will be inserted by reference,
otherwise the object will be cloned and then inserted.
Return Value
Type:
Obj
A newly inserted object.
See Also