Revision history [back]
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 or measure use the remove
method.
# delete all objects
objs = model.getZoneHVACLowTempRadiantVarFlows
objs.each do |obj|
obj.remove
end
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 or measure API/measure use the remove
method.
# delete all objects
objs = model.getZoneHVACLowTempRadiantVarFlows
objs.each do |obj|
obj.remove
end
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
To delete ZoneHVAC objects using 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
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