If we have a sub like this...
...we get very nice docs when hovering that sub name in other code:
However, if we do the same with a variable:
...we don't get anything more than the type and scope. It sure would be nice if the variable docs also could be visible.
B4X:
' This is a very important sub
Public Sub showingOff
Msgbox("Never use Msgbox", "Important message")
End Sub
...we get very nice docs when hovering that sub name in other code:
However, if we do the same with a variable:
B4X:
' This timer is very important because X, Y and Z
Private theTimer As Timer
...we don't get anything more than the type and scope. It sure would be nice if the variable docs also could be visible.