Inserts a <key, [a,b,c,d,h,v]> pair in the dictionary.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj PutMatrix(
string key,
Matrix2D value
)
Public Function PutMatrix (
key As String,
value As Matrix2D
) As Obj
public:
virtual Obj^ PutMatrix(
[InAttribute] String^ key,
[InAttribute] Matrix2D^ value
) sealed
function PutMatrix(key, value);
Parameters
- key
- Type: SystemString
The key of the value to set.
- value
- Type: pdftron.CommonMatrix2D
A matrix used to set the values in an Array of six numbers.
The resulting Array will be inserted into the dictionary.
Return Value
Type:
Obj
A newly created Array object.
Remarks
If this dictionary already contains an entry with the same key, the old entry will be deleted and all
DictIterators to this entry will be invalidated.
See Also