Hi,
I try to read a select value in a table with IronPython does anybody know how to do this??
My script:
from Spotfire.Dxp.Data import DataValueCursor
from Spotfire.Dxp.Data import DataPropertyClass
table=Document.Data.Tables["name_table"]
ticket=table.Columns["ticket"]
ticketval=DataValueCursor.Create[str](ticket)
for row in table.GetRows(ticketval):
if(ticketval.CurrentValue == Here the selected value):
Do something
Best Regards
Eric