select_objects#

dlubal.api.rsection.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


Usage

rsection_app.select_objects(
    objs=[
        rsection.structure_core.Line(
            no=9
        ),
        rsection.structure_core.Line(
            no=10
        ),
    ]
)