I'm trying to use SDK to get or set value from Global table by cell.value function, but it didn't work.
Here is my code.
treenode RoutingData = model()->find("Tools/GlobalTables/RoutingData"); if (RoutingData != NULL) { RoutingData->destroy(); } else { } RoutingData = applicationcommand("addglobaltable", 1); RoutingData->setName("RoutingData"); Table* A = RoutingData->objectAs(Table); int row = 1; int colum = 1; print(A->cell(1, 1)->value);