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