Type   Default Value   Read Only   Description
String "0,0" No The point as a string

 

   
Notes
 
     

Allows you to get or set the point using a string.

The format of the string must be x, y.

 

   
See Also
 
     

None.

 

   
Example
 
     

[VBScript]
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