aggiunti bottoni per copiare singola anta
This commit is contained in:
@@ -61,19 +61,48 @@ namespace WebWindowComplex
|
||||
}
|
||||
}
|
||||
|
||||
public ItemTable( string s_description, int n_row, int n_col)
|
||||
/// <summary>
|
||||
/// Indica l'indice rispetto al vettore delle sash
|
||||
/// Se non è una sash vale -1
|
||||
/// </summary>
|
||||
private int m_numSash;
|
||||
public int NumSash
|
||||
{
|
||||
m_desc = s_description;
|
||||
Row = n_row;
|
||||
Col = n_col;
|
||||
get
|
||||
{
|
||||
return m_numSash;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_numSash = value;
|
||||
}
|
||||
}
|
||||
|
||||
public ItemTable(AreaTypes elementType, string s_description,int n_row, int n_col)
|
||||
/// <summary>
|
||||
/// Indica il numero di figli
|
||||
/// Se non ha figli vale -1
|
||||
/// </summary>
|
||||
private int m_numChild;
|
||||
public int NumChild
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_numChild;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_numChild = value;
|
||||
}
|
||||
}
|
||||
|
||||
public ItemTable(AreaTypes elementType, string s_description,int n_row, int n_col, int n_numSash, int n_numChild)
|
||||
{
|
||||
Type = elementType;
|
||||
m_desc = s_description;
|
||||
Row = n_row;
|
||||
Col = n_col;
|
||||
NumSash = n_numSash;
|
||||
NumChild = n_numChild;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user