Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
I assume I have a list of tables and loop through them, how do tell which sheet# a table belong to on a multiple sheet drawing?
TableOwner tableOwner = (TableOwner) pfcSession.GetCurrentSession().GetCurrentModel();
Tables tables = tableOwner.ListTables();
for (int i = 0; i < tables.getarraysize(); i++) {
Table table = tables.get(i);
I tried read the free jlink docs but I could not locate it.
There is currently no direct Jlink method in the form of Table.Getsheet(). To request it file an enhancement request.
At present, as you have figured ListTables() returns all the tables that are present in the TableOwner.
A workaround may consist in calling GetSegmentCount () and then GetSegmentSheet()
Thank you very much, it works
GetSegmentSheet(0)
I'm looking for a way to convert the contents of a google sheet I've created (nothing fancy) to a reddit table. I've tried tableit.net but it comes out looking a bit messy. The sheet I'm trying to convert is here MyCCPay
Thanks!