Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Public Class Dot
  2.  
  3. Private _coordinates As Double
  4.  
  5. Property Coordinates() As Double
  6. Get
  7. Return _coordinates
  8. End Get
  9. Set(ByVal Value As Double)
  10. _coordinates = Value
  11. End Set
  12. End Property
  13.  
  14. Private _isDrawn As Boolean
  15.  
  16. Property IsDrawn() As Boolean
  17. Get
  18. Return _isDrawn
  19. End Get
  20. Set(ByVal Value As Boolean)
  21. _isDrawn = Value
  22. End Set
  23. End Property
  24.  
  25.  
  26. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement