I have a button with a Mouse_Clicked event. I want to call the button's Mouse_Clicked event from another sub. What is the EventData that must be passed into that call? Below is the code:
B4X:
Sub btnTest_MouseClicked (EventData As MouseEvent)
End Sub
Sub CallButton
btnTest_MouseClicked("What goes here?")
End Sub