First time here? Check out the Help page!
1 | initial version |
ModelObject inherits methods from the WorkspaceObject class, which is where the remove
method lives. Everything, like ZoneHVACUnitHeaters, should also inherit this method, which you can use to remove them from the model.
2 | No.2 Revision |
ModelObject inherits methods from the WorkspaceObject class, which is where the remove
method lives. Everything, like ZoneHVACUnitHeaters, should also inherit this method, which you can use to remove them from the model.
Note that some HVAC objects will not be 'removable'. But, there is a method isRemovable
in HVACComponent that will tell you if it can be removed.
3 | No.3 Revision |
ModelObject inherits methods from the WorkspaceObject class, which is where the remove
method lives. Everything, like ZoneHVACUnitHeaters, should also inherit this method, which you can use to remove them from the model.
Note that some HVAC objects will not be 'removable'. But, there is a method isRemovable
in HVACComponent that will tell you if it an object can be removed.