Allows you to get or set the point using a string.
The format of the string must be x, y.
None.
[VBScript] Set mypoint = Server.CreateObject("ImageGlue7.XPoint") mypoint.String = "20, 10" Response.Write("X = " & mypoint.X & "<br>") Response.Write("Y = " & mypoint.Y & "<br>")
Set mypoint = Server.CreateObject("ImageGlue7.XPoint") mypoint.String = "20, 10" Response.Write("X = " & mypoint.X & "<br>") Response.Write("Y = " & mypoint.Y & "<br>")
This produces the following output.
X = 20 Y = 10