Jump to content
  • How to Iterate Over All the Document Properties in Spotfire® Using IronPython Scripting


    This script will iterate over all the document properties in the current document.

    Introduction

    This script will iterate over all the document properties in the current document.

    Code Sample

    # Copyright © 2017. TIBCO Software Inc. Licensed under TIBCO BSD-style license.
    
    from Spotfire.Dxp.Data import *
    
    for DocProp in Document.Data.Properties.GetProperties(DataPropertyClass.Document):
        print DocProp.Name, DocProp.Value
     

    References

    License:  TIBCO BSD-Style License

     

     


    User Feedback

    Recommended Comments

    There are no comments to display.


×
×
  • Create New...