I would like define properties with parameters (pairs of functions getXXX/setXXX) in a way similar to:
B4A already has this feature, but with no parameters.
I'd like to be able to define it and see in the IDE in the same way:
It's usage should be like the following:
Thank you
B4X:
public Sub setTextMatrix(Fila as int, Columna as int, Valor As String)
' ....
End Sub
public Sub getTextMatrix(Fila as int, Columna as int) As String
'....
End Sub
I'd like to be able to define it and see in the IDE in the same way:
It's usage should be like the following:
B4X:
miTabla.TextMatrix(1,2)="Hello"
' or
S=mitabla.TextMatrix(2,3)
Thank you