Exemple #1
0
 // Token: 0x060044F6 RID: 17654 RVA: 0x001710B8 File Offset: 0x0016F4B8
 public void TableViewCellVisibilityChanged(int row, bool isVisible)
 {
     if (isVisible)
     {
         VisibleCounterCell visibleCounterCell = (VisibleCounterCell)this.m_tableView.GetCellAtRow(row);
         visibleCounterCell.NotifyBecameVisible();
     }
 }
 //Will be called by the TableView when a cell's visibility changed
 public void TableViewCellVisibilityChanged(int row, bool isVisible)
 {
     //Debug.Log(string.Format("Row {0} visibility changed to {1}", row, isVisible));
     if (isVisible)
     {
         VisibleCounterCell cell = (VisibleCounterCell)m_tableView.GetCellAtRow(row);
         cell.NotifyBecameVisible();
     }
 }
Exemple #3
0
 //Will be called by the TableView when a cell's visibility changed
 public void TableViewCellVisibilityChanged(int row, bool isVisible)
 {
     //if (UnityEngine.UI.Windows.Constants.LOGS_ENABLED == true) UnityEngine.Debug.Log(string.Format("Row {0} visibility changed to {1}", row, isVisible));
     if (isVisible)
     {
         VisibleCounterCell cell = (VisibleCounterCell)m_tableView.GetCellAtRow(row);
         cell.NotifyBecameVisible();
     }
 }