In one of my models I have code similar to the following:
Table myTable = reftable("GlobalTable1"); token.labels.assert("DelayTime").value = myTable[1][2];
and it throws the following error message:
Could not resolve correct operator for = operation. Left side is type Property, right type is TableElement
I'm able to get around it by setting a variable first like so:
Table myTable = reftable("GlobalTable1"); int DelayTime = myTable[1][2]; token.labels.assert("DelayTime").value = DelayTime;