Given:
Code:
Public Class clsFlood
Private AnimalsInArk As Long
Public Property Animals() As Long
Get
Return AnimalsInArk
End Get
Set(ByVal Number As Long)
AnimalsInArk = Number
End Set
End Property
End Class
how does one establish that the tooltip for the Animals property includes the description âGets or Sets the size of Noahâs headachesâ?