Exemplo n.º 1
0
 public override void SetRowValue(long row, DataT value)
 {
     Update();
     if (m_rowIndex == null)
     {
         //act as passthrough
         column.SetRowValue(row, value);
     }
     else if (row < m_rowIndex.Length && m_rowIndex[row] >= 0)
     {
         column.SetRowValue(m_rowIndex[row], value);
     }
 }
Exemplo n.º 2
0
        public override void SetRowValue(long row, DataT value)
        {
            long r = GetRow(row);

            if (r >= 0)
            {
                column.SetRowValue(r, value);
            }
        }