Hello,
in the main activity, I often use references to a created library and the code is too repetitive, like this:
Is there, any method like this:
in the main activity, I often use references to a created library and the code is too repetitive, like this:
B4X:
iGlo.GetValueAsString
iGlo.SetValue
iGlo.Clear
iGlo.GetName
......
Is there, any method like this:
B4X:
Use/With iGlo do
GetValueAsString
SetValue
Clear
GetName
......
end