7
« on: September 07, 2024, 12:11:55 am »
in jscript (and I assume in vbscript as well), I can create a declaration "var coll as EA.Collection;", which is an array with methods, one of which is "coll.GetAt()", which will return an element of that collection (I'm sure you know all of this). My issue is that while the connector (i.e., EA.Connector) has an element called "Properties", which appears to be a collection, as I can retrieve properties.Count. However, I've not found what element it is a collection of. In your second link, there's a Property class. In jscript, I can't create a 'Property' using "var prop as EA.Property". EA.Property doesn't appear to exist.