get_object_list#
- dlubal.api.rsection.Application.get_object_list(self, objs, model_id=None)#
Retrieves a list of objects from the model.
Example
rsection_app.get_object_list()
# Get all objects from specific type without parent
all_members = rsection_app.get_object_list([rsection.structure_core.Member()])
# Get all objects from specific type with parent
all_member_load = rsection_app.get_object_list([rsection.loads.MemberLoad(load_case = '')])
# Get all objects
all_objects = rsection_app.get_object_list([rsection.All()])
await rsection_app.get_object_list();
// Get all objects from specific type without parent
var all_members = await rsection_app.get_object_list([rsection.structure_core.Member()]);
// Get all objects from specific type with parent
var all_member_load = await rsection_app.get_object_list([rsection.loads.MemberLoad(load_case = "")]);
// Get all objects
var all_objects = await rsection_app.get_object_list([rsection.All()]);