I've got an app that allows the user to create dynamic forms. I'd like to track the data types (String,Integer,etc...) of each field.
Can I reference object types somehow? e.g.,
How do I do that in B4X?
Can I reference object types somehow? e.g.,
B4X:
dim all_types() as Object
all_types = Array(String,Integer,Boolean,Map)
How do I do that in B4X?