我正在尝试使用IronPython从Spotfire中的crosstable导出数据作为TSV。
目前它出口整个Crosstable:
from System.IO import Path, File, StreamWriter
from Spotfire.Dxp.Application.Visuals import CrossTablePlot
#Export CrossTable data to the temp file
writer = StreamWriter("C:/temp/data.tsv")
vTable.As[CrossTablePlot]().ExportText(writer)
但是,我只想导出我标记的行。有没有办法在没有使用Datatable方法查找的情况下快速完成这项工作?