Inserts a <key, [x1,y1,x2,y2]> pair in the dictionary.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj PutRect(
string key,
double x1,
double y1,
double x2,
double y2
)
Public Function PutRect (
key As String,
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
) As Obj
public:
virtual Obj^ PutRect(
[InAttribute] String^ key,
[InAttribute] double x1,
[InAttribute] double y1,
[InAttribute] double x2,
[InAttribute] double y2
) sealed
function PutRect(key, x1, y1, x2, y2);
Parameters
- key
- Type: SystemString
The key of the value to set.
- 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.
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