IronPython

Get values of marked rows
Marking = Document.Data.Markings[MarkingName] data = [] for i in Marking.GetSelection(DataTable).AsIndexSet():  data.append(dict([(col.Name...
Wed, 25 Nov, 2015 at 3:21 PM
Clear a data table
DataTable.Remove( DataTable.Select("rowid() >= 0") )
Wed, 25 Nov, 2015 at 3:27 PM
Load Shapefiles from SharePoint
Marking = Document.Data.Markings[MarkingName] data = [] for i in Marking.GetSelection(SharePointShapeFiles).AsIndexSet():  data.append(dict([(col.Name, c...
Tue, 17 Jul, 2018 at 9:27 AM
Quick Recipe -- Delayed IronPython Call
This is a quick recipe for making a delayed IronPython call. Create a Text Area and edit the HTML Add a button for calling the script.  This will ge...
Wed, 14 Dec, 2016 at 10:25 AM