Public Class ClassPoint
Public _xx As Integer
Public _yy As Integer
Public Property Xx1 As String
Get
' Gets the property value.
Return _xx
End Get
Set(ByVal Value As String)
' Sets the property value.
_xx = Value
End Set
End Property
Public Property Yy1 As String
Get
' Gets the property value.
Return _yy
End Get
Set(ByVal Value As String)
' Sets the property value.
_yy = Value
End Set
End Property
End Class