Model.allsuppressactive#

Model.allsuppressactive(state)#

Takes an integer state indicating the active/inactive status for all supported entities.

Parameters:

state (int) –

Indicates to set all supported entities as:

0 - To active and to turn on their display.

1 - To inactive and remove them from the display.

2 - To active, but not to re-display them.

Example#

Set all supported entities to inactive#
import hm
import hm.entities as ent

model = hm.Model()

model.allsuppressactive(state=1)