Model.CE_Unrealize#
- Model.CE_Unrealize(collection)#
FE unrealize all the defined connectors on collection (removes all created FE).
- Parameters:
collection (Collection) – The collection containing the connector entities that needs to be unrealized.
Example#
FE unrealize the connectors with IDs 1 and 2 on collection#import hm import hm.entities as ent model = hm.Model() connectors = hm.Collection(model, ent.Connector, [1, 2]) model.CE_Unrealize(collection=connectors)
Note
This function should be called only after the
Model.CE_FE_SetDetails()function. The connector state is set to unrealized and the connectors are displayed in yellow.