如何使用Ironpython返回Spotfire文件中的完整文档属性列表。
属性可以通过
设置Document.Properties["myProperty"] = "myValue"
我想做点什么
for myProperty in Document.Properties:
print myProperty
#Some checks like if myProperty.Name = 'name1' then ...
找到了这个,但是还不能让它工作(它返回的只是属性:http://www.cambridgesoft.com/support/EnterpriseSupport/KnowledgeBase/FAQ/details/Default.aspx?TechNote=2344
from Spotfire.Dxp.Data import *
for DocProp in Document.Data.Properties.GetProperties(DataPropertyClass.Document):
print DocProp.Name, DocProp.Value