Exemplo n.º 1
0
 /// <summary>
 /// Sets the area section assignments.
 /// </summary>
 /// <param name="model">The model.</param>
 /// <param name="table">The table.</param>
 private static void setAREA_SECTION_ASSIGNMENTS(Model model, List <Dictionary <string, string> > table)
 {
     foreach (Dictionary <string, string> tableRow in table)
     {
         Area area = model.Structure.Areas[tableRow["Area"]];
         area.SectionName = tableRow["Section"];
         area.AddMaterialOverwrite(model.Components.Materials.FillItem(tableRow["MatProp"]));
     }
 }