Good day,
Is it possible to retrieve a view's "Name" and "Event Name" Properties? That one would set within the Designer's Main section. I'm creating a dynamic view library and need to retrieve those fields.
I've tried reflection, and use something like...
But obviously Name & getName field/Method don't exist or aren't accessible... Can someone please advise?
Is it possible to retrieve a view's "Name" and "Event Name" Properties? That one would set within the Designer's Main section. I'm creating a dynamic view library and need to retrieve those fields.
I've tried reflection, and use something like...
B4X:
Dim r As Reflector
r.Target = Label1
Log(r.GetField("Name"))
Log(r.RunMethod("getName"))
But obviously Name & getName field/Method don't exist or aren't accessible... Can someone please advise?