update_object_list#
- dlubal.api.rstab.Application.update_object_list(self, objs, model_id=None, skip_invalid_attributes=None)#
Updates a list of objects in the model.
- Parameters:
objs (list[obj]) – A list of objects to be updated.
model_id (ModelId | None) – Unique identifier of the model. If None, the active model is used.
skip_invalid_attributes (bool | None) – If True, invalid objects are skipped and returned as warnings.
- Returns:
None
Method Type: Core
Usage
rstab_app.update_object_list(
[
rstab.structure_core.Node(no=1, coordinate_1=1, coordinate_2=5),
rstab.structure_core.CrossSection(no=1, name='IPE 100'),
]
)
rstab_app.update_object_list(
[
rstab.structure_core.Node(no=1, coordinate_1=1, coordinate_2=5),
rstab.structure_core.CrossSection(no=1, name="IPE 100"),
]
);