How to get all OS objects and their members?
Is there a way to get all the os objects and the public member function in some format of data structure? For example, based on the class reference here, https://openstudio-sdk-documentation....
BuildingStory:
.defaultConstructionSet
.defaultScheduleSet
.renderingColor
.resetDefaultConstructionSet
...
...
Comments
You could use your preferred programming language to scrape the OpenStudio SDK website and compile the list of classes/methods.
This is a good suggestion I'll try that.