Eric H Active Member Licensed User Longtime User Nov 12, 2013 #1 I thought I'd come across how to add information to a tooltip window before, but after searching the forums I am unable to find it. For an example of what I am trying to do: http://www.b4x.com/android/forum/threads/internal-help.6432/ I am writing a custom class and I want to be able to provide users of the class with more detailed information than just the arguments required to use it (Example, definition of behaviors, etc...) How do I add information to a tooltip?
I thought I'd come across how to add information to a tooltip window before, but after searching the forums I am unable to find it. For an example of what I am trying to do: http://www.b4x.com/android/forum/threads/internal-help.6432/ I am writing a custom class and I want to be able to provide users of the class with more detailed information than just the arguments required to use it (Example, definition of behaviors, etc...) How do I add information to a tooltip?
NJDude Expert Licensed User Longtime User Nov 12, 2013 #2 Just add a comment line(s) before the statement line, for example: B4X: 'VALUE = Integer number that sets something Public Sub Start(Value As Int) ... ... Upvote 0
Just add a comment line(s) before the statement line, for example: B4X: 'VALUE = Integer number that sets something Public Sub Start(Value As Int) ... ...
Eric H Active Member Licensed User Longtime User Nov 12, 2013 #3 Thanks NJ Dude. I knew it was easy, just couldn't remember. Appreciate it Upvote 0