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
Recommended Comments
There are no comments to display.