First time here? Check out the Help page!
1 | initial version |
To delete ZoneHVAC objects in the GUI:
Click on the zone equipment name
Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab
2 | No.2 Revision |
To delete ZoneHVAC objects in using the GUI:
Click on the zone equipment name
Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab
To delete objects using the API/measure use the remove
method. For example, to delete all objects:
objs = model.getZoneHVACLowTempRadiantVarFlows
objs.each do |obj|
obj.remove
end
3 | No.3 Revision |
To delete ZoneHVAC objects using the GUI:
Click on the zone equipment name
Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab
To delete objects using the API/measure use the remove
method. For example, to delete all objects:
# delete all objects
objs = model.getZoneHVACLowTempRadiantVarFlows
objs.each do |obj|
obj.remove
end
4 | No.4 Revision |
To delete ZoneHVAC objects using the GUI:
Click on the zone equipment name
Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab
To delete objects using the API/measure API or measure use the remove
method.
# delete all objects
objs = model.getZoneHVACLowTempRadiantVarFlows
objs.each do |obj|
obj.remove
end