Example #1
0
 private void Resize()
 {
     for (int i = 0; i < this._Rows.Count; i++)
     {
         HeaderRow hr = this.GetRow(i);
         for (int j = 0; j < hr.ColCount; j++)
         {
             HeaderCell hc = hr.GetCell(j);
             hc.Row = i;
             hc.Col = j;
         }
     }
 }
Example #2
0
        public HeaderCell GetCell(int Row, int Col)
        {
            HeaderRow hr = this._Rows[Row] as HeaderRow;

            return(hr.GetCell(Col));
        }