Hello, guys!
i have some list of polygons [1, 4, 5] and i need to put these selected values from object in polygon Selection tag (PST), in command lines PST have only commnd GetBaseSelect i need in command like SetBaseSelect
theObject = doc.GetActiveObjects
polySelection = theObject.GetPolygonS()
polySelection.DeselectAll()
xmlPolygons = [1, 4, 5]
for xmlPoly in xmlPolygons:
thePoly = int(xmlPoly) - 1
polySelection.Select(thePoly)
???????????????