|
The following code.
Set rc = Server.CreateObject("ABCpdf13.XRect")
rc.String = "20 20 220 120"
Response.Write "Rect = " & rc
rc.Move 50, 50
Response.Write "<br>"
Response.Write "Move = " & rc
Produces the following output.
Rect = 20 20 220 120
Move = 70 70 270 170
|