delete_object#
- dlubal.api.rfem.Application.delete_object(self, obj, model_id=None)#
Deletes a single object from the model.
- Parameters:
obj (obj) – An object to be deleted.
model_id (ModelId | None) – Unique identifier of the model. If None, the active model is used.
- Returns:
None
Method Type: Core
Usage
rfem_app.delete_object(
rfem.structure_core.Node(no=5)
)
await RfemApp.delete_object(
new Rfem.StructureCore.Node { No = 5 }
);