Thank you Erel for checking this.
You are right... It's an issue related to & character usage.
In my original comment I has more lines and an & .
Can you check the following:
'Test Working
Private Sub test3 As PlayedChoice
Dim a As PlayedChoice
a.Initialize
a.row = 0
a.column = 0
Return a
End Sub
'Test showing is not used & NOT showing tooltip...
Private Sub test4 As PlayedChoice
Dim a As PlayedChoice
a.Initialize
a.row = 0
a.column = 0
Return a
End Sub
Test4 has a "&" in comment. There it doesn't work. If this is expected it's ok.
By the way, are there other characters we should avoid using in documentation?
Andreas.