Inserts an Array of 4 numbers in this Array.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj InsertRect(
int pos,
double x1,
double y1,
double x2,
double y2
)
Public Function InsertRect (
pos As Integer,
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
) As Obj
public:
virtual Obj^ InsertRect(
[InAttribute] int pos,
[InAttribute] double x1,
[InAttribute] double y1,
[InAttribute] double x2,
[InAttribute] double y2
) sealed
function InsertRect(pos, x1, y1, x2, y2);
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.
- x1
- Type: SystemDouble
The x1 value.
- y1
- Type: SystemDouble
The y1 value.
- x2
- Type: SystemDouble
The x2 value.
- y2
- Type: SystemDouble
The y2 value.
Return Value
Type:
Obj
A newly created Array object.
See Also