Display data table properties
/Description: Display all data table properties.
from Spotfire.Dxp.Data import DataPropertyClass #Document = 0, Column = 1, Table = 2 for property in Document.Data.Properties.GetProperties(DataPropertyClass.Table): print "Property Name: " + property.Name print "Property Description: " + property.Description print "Property Value: " + str(property.Value) print "\r\n"