Aggiunti element per Bottom rail
This commit is contained in:
@@ -510,6 +510,24 @@ namespace WebWindowComplex.Models
|
||||
//m_ParentWindow.OnUpdatePreview(m_ParentWindow.sSerialized());
|
||||
}
|
||||
|
||||
public List<SplitElementDimension> searchElemFromSubArea(int subArea)
|
||||
{
|
||||
if(subArea == 0)
|
||||
{
|
||||
if (m_bSplitStartVert)
|
||||
return m_ElemDimVertList;
|
||||
else
|
||||
return m_ElemDimHorizList;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (m_bSplitStartVert)
|
||||
return m_ElemDimHorizList.Where(x => x.nSubArea == subArea).ToList();
|
||||
else
|
||||
return m_ElemDimVertList.Where(x => x.nSubArea == subArea).ToList();
|
||||
}
|
||||
}
|
||||
|
||||
public bool OnlySashChild()
|
||||
{
|
||||
foreach (var areaSplitted in AreaList)
|
||||
|
||||
Reference in New Issue
Block a user