Aggiornamento profili degli elementi

This commit is contained in:
Annamaria Sassi
2026-01-26 17:22:55 +01:00
parent 9a460ace4f
commit 8a968c6ff0
6 changed files with 92 additions and 57 deletions
+6 -13
View File
@@ -43,7 +43,6 @@ namespace WebWindowComplex.Models
}
}
}
public int nIndex
{
get
@@ -72,7 +71,6 @@ namespace WebWindowComplex.Models
return m_ParentArea;
}
}
public double dOverlap
{
get
@@ -105,6 +103,10 @@ namespace WebWindowComplex.Models
m_sName = dValue;
}
public void SetOverlapElement(double dValue)
{
m_dOverlap = dValue;
}
public ElementDimension Copy()
{
@@ -116,11 +118,6 @@ namespace WebWindowComplex.Models
#region Internal Methods
internal void SetOverlap(double overlap)
{
m_dOverlap = overlap;
}
internal JsonElementDimension Serialize()
{
JsonElementDimension JsonElementDimension = new JsonElementDimension(m_nIndex, m_dDimension);
@@ -129,14 +126,10 @@ namespace WebWindowComplex.Models
#endregion Internal Methods
#region Protected Fields
protected Area m_ParentArea;
#endregion Protected Fields
#region Private Fields
private Area m_ParentArea;
private double m_dDimension;
private double m_dOverlap;