create_object_list#
Example
structure = [
rstab.structure_core.Material(
no=1,
name="S235",
),
rstab.structure_core.Section(
no=1,
name="HE 300 A",
material=1,
),
rstab.structure_core.Node(
no=1,
coordinate_1=1,
),
]
rstab_app.create_object_list(structure)
var structure = new List<IMessage> {
new rstab.StructureCore.Material{
No=1,
Name="S235",
},
new rstab.StructureCore.Section{
Name="HE 300 A",
Material=1,
},
new rstab.StructureCore.Node{
No=1,
Coordinate1=1,
},
};
await rstab_app.create_object_list(structure);