Inserts an ObjType::e_number object in the Array.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj InsertNumber(
int pos,
double value
)
Public Function InsertNumber (
pos As Integer,
value As Double
) As Obj
public:
virtual Obj^ InsertNumber(
[InAttribute] int pos,
[InAttribute] double value
) sealed
function InsertNumber(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: SystemDouble
The value of the ObjType::e_number object to be inserted.
Return Value
Type:
Obj
A newly created Number object.
See Also