ifcopenshell.api.owner.remove_actor

Module Contents

ifcopenshell.api.owner.remove_actor.remove_actor(file: ifcopenshell.file, actor: ifcopenshell.entity_instance) None

Removes an actor

Parameters:

actor (ifcopenshell.entity_instance) – The IfcActor to remove.

Returns:

None

Return type:

None

Example:

# Setup an organisation with a single role
organisation = ifcopenshell.api.owner.add_organisation(model,
    identification="AWB", name="Architects Without Ballpens")
role = ifcopenshell.api.owner.add_role(model, assigned_object=organisation)
ifcopenshell.api.owner.edit_role(model, role=role, attributes={"Role": "ARCHITECT"})

# Assign that organisation to a newly created actor
actor = ifcopenshell.api.owner.add_actor(model, actor=organisation)

# Actually we need ballpens on this project
ifcopenshell.api.owner.remove_actor(model, actor=actor)