Question
Jlink - how to get the sheet# of a table?
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.

