I use this code to create the map:
The function is obviously output to the log, but I can't figure out how to actually execute the function B4XTable1.EvenRowColor = xui.Color_Cyan by extracting the value from the map.
Thank you
B4X:
m = CreateMap("Frozen cols = 1": "B4XTable1.NumberOfFrozenColumns = 1", "EvenRowColor": _
"B4XTable1.EvenRowColor = xui.Color_Cyan", _
"OddRowColor": "B4XTable1.OddRowColor = xui.Color_Yellow")
Log(Settings(m.get("EvenRowColor")))
B4X:
Sub Settings(s As String) As String
Return s
End Sub