select_objects#

dlubal.api.rfem.Application.select_objects(self, objs, model_id=None)#

Selects a list of objects in the model.

Parameters:
  • objs (list[obj]) – A list of objects to be selected. See Model.

  • model_id (ModelId | None) – Unique identifier of the model. If None, the active model is used.

Returns:

None


Usage

rfem_app.select_objects(
    objs=[
        rfem.structure_core.Member(no=46),
        rfem.structure_core.Member(no=52),
    ]
)