Model.removeview#
- Model.removeview(name)#
Deletes a saved view from the database.
- Parameters:
name (hwString) – The name of the view to delete. The view names 1-5 are reserved and cannot be deleted.
Example#
Delete the view with the name “ my_view “#import hm import hm.entities as ent model = hm.Model() model.removeview(name="my_view")