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