Is WebListBox.CellValueAt String or Variant?

The value is “Error”, right? This works:

if t2 isa WebListBoxStyleRenderer then
  dim T2String as string = WebListBoxStyleRenderer(t2).Value
End If
1 Like

Hello,

thank you for your answer. Till 2021R1.1 the CellValueAt returned a JSON-String. And it was possible to decode this string- So it was possible to get the attributes of the cell, like color and content.

With 2022r1 you get no string but an object. As Greg told the cell still contains the information as JSON.

You ca check this when you compile the example with 2021r1.

Hello,

yes it works. This helps very much.

Thank you very much