Reputation: 53101
I need to refer to a specific datatable in Spotfire in IronPython.
currently I'm seeing references to this but the datatable I need 'may' not be the one that is active.
Document.ActiveDataTableReference
Upvotes: 1
Views: 944
Reputation: 3974
you can refer to any table by name using this syntax:
Document.Data.Tables["mytable"]
Upvotes: 2