Using 4.70
I have a normal class with the following method :
That method does not show in the code completion drop down for the instantiated class, but it does work OK if I call it anyway. That said it doesn't recognise it as a setter any more, I have to call it like this :
What's the criteria for Subs appearing in the completion drop down? I've seen this before but I can't remember the circumstances surrounding the others. If I set the Sub name to almost anything else it code completes as expected and I can use it as a setter (ie x.HTMLFileName="hi")
I have a normal class with the following method :
B4X:
public Sub setHTMLFile(fn As String)
...
End Sub
That method does not show in the code completion drop down for the instantiated class, but it does work OK if I call it anyway. That said it doesn't recognise it as a setter any more, I have to call it like this :
B4X:
x.setHTMLFile("hi")
What's the criteria for Subs appearing in the completion drop down? I've seen this before but I can't remember the circumstances surrounding the others. If I set the Sub name to almost anything else it code completes as expected and I can use it as a setter (ie x.HTMLFileName="hi")