Aggiunti element per Bottom rail

This commit is contained in:
Annamaria Sassi
2026-01-29 18:00:18 +01:00
parent be0ea6e42d
commit 41cd75cdf8
10 changed files with 118 additions and 26 deletions
+3 -14
View File
@@ -1137,20 +1137,9 @@ namespace WebWindowComplex
case AreaTypes.SPLIT:
{
Split split = (Split)found;
if (split.bSplitStartVert)
{
for (int i = 0; i < split.ElemDimVertList.Count; i++)
{
split.ElemDimVertList.ElementAt(i).SetNameElement(profileNameList.ElementAt(i));
}
}
else
{
for (int i = 0; i < split.ElemDimHorizList.Count; i++)
{
split.ElemDimHorizList.ElementAt(i).SetNameElement(profileNameList.ElementAt(i));
}
}
List<SplitElementDimension> SpElemList = split.searchElemFromSubArea(EntityIdSearch);
for(int i = 0; i < SpElemList.Count; i++)
SpElemList.ElementAt(i).SetNameElement(profileNameList.ElementAt(i));
break;
}
}