Inserts an ObjType::e_name object in the Array.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj InsertName(
int pos,
string name
)
Public Function InsertName (
pos As Integer,
name As String
) As Obj
public:
virtual Obj^ InsertName(
[InAttribute] int pos,
[InAttribute] String^ name
) sealed
function InsertName(pos, name);
Parameters
- pos
- Type: SystemInt32
The location in the Array to insert the object into. 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.
- name
- Type: SystemString
The value of the ObjType::e_name object to be inserted.
Return Value
Type:
Obj
A newly created Name object.
See Also