' Project RealEstate, source code file RiverPoint.vb. ' Data for points of river to plot in picture box. Public Class RiverPoint Public X, Y As Single Public ID As Integer Public StartPoint As Boolean Public Sub New(ByVal XVal As Single, ByVal YVal As Single, _ ByVal S As Boolean) X = XVal Y = YVal StartPoint = S End Sub End Class