Exemplo n.º 1
0
 public void removeVerticalCell(MDPanelViewCell aCell)
 {
     list_vertical.Remove(aCell);
 }
Exemplo n.º 2
0
 public void removeHorizontalCell(MDPanelViewCell aCell)
 {
     list_horizontal.Remove(aCell);
 }
Exemplo n.º 3
0
 public void addVerticalCell(MDPanelViewCell aCell)
 {
     list_vertical.Add(aCell);
     aCell.transform.parent = this.transform;
 }
Exemplo n.º 4
0
 public void addHorizontalCell(MDPanelViewCell aCell)
 {
     list_horizontal.Add(aCell);
     aCell.transform.parent = this.transform;
 }