Пример #1
0
 public DataCell(CustomReportItem owner, int rowIndex, int columnIndex)
 {
     this.m_owner       = owner;
     this.m_rowIndex    = rowIndex;
     this.m_columnIndex = columnIndex;
     if (!owner.CustomData.NoRows)
     {
         CustomReportItemCellInstancesList cells = this.m_owner.CriInstance.Cells;
         this.m_cellInstance = cells[rowIndex][columnIndex];
     }
 }
Пример #2
0
 internal DataCell(CustomReportItem owner, int rowIndex, int columnIndex)
 {
     m_owner       = owner;
     m_rowIndex    = rowIndex;
     m_columnIndex = columnIndex;
     if (!owner.CustomData.NoRows)
     {
         CustomReportItemCellInstancesList cells = m_owner.CriInstance.Cells;
         m_cellInstance = cells[rowIndex][columnIndex];
     }
 }