[Missing <summary> documentation for "M:pdftron.SDF.Obj.InsertMatrix(System.Int32,pdftron.Common.Matrix2D)"]
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj InsertMatrix(
int pos,
Matrix2D value
)
Public Function InsertMatrix (
pos As Integer,
value As Matrix2D
) As Obj
public:
virtual Obj^ InsertMatrix(
[InAttribute] int pos,
[InAttribute] Matrix2D^ value
) sealed
function InsertMatrix(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: pdftron.CommonMatrix2D
A matrix used to set the values in an Array of six numbers. The resulting Array will be then inserted
in this Array.
Return Value
Type:
Obj
A newly created Array object.
See Also