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.

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

Returns:

None

Method Type: Core


Usage

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