ObjInsertString Method (Int32, Byte) |
Inserts an ObjType::e_string object in the Array.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj InsertString(
int pos,
byte[] buffer
)
Public Function InsertString (
pos As Integer,
buffer As Byte()
) As Obj
public:
virtual Obj^ InsertString(
[InAttribute] int pos,
[InAttribute] array<unsigned char>^ buffer
) sealed
function InsertString(pos, buffer);
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.
- buffer
- Type: SystemByte
The buffer used to set the value of the ObjType::e_string
object to be inserted.
Return Value
Type:
Obj
A newly created String object.
See Also