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

 

   

Notes
 

Allows you to access to the point as a string.

The format of the string must be "x y".

 

   

Example
 

The following code.

Set pt = Server.CreateObject("ABCpdf12.XPoint")
pt.String = "20 10"
Response.Write("X = " & pt.X)
Response.Write("<br>")
Response.Write("Y = " & pt.Y)

Produces the following output.

X = 20
Y = 10