I was interested to see which Properties are available in DesignerArgs.DesignerProperties so I tried:
And got an error
Are these intended to be available?
B4X:
Public Sub Test(DesignerArgs As DesignerArgs)
For Each k As Object In DesignerArgs.DesignerProperties.Keys
Log(k)
Next
End Sub
And got an error
java.lang.RuntimeException: method not supported. Use For Each instead.
Are these intended to be available?