예제 #1
0
        private static bool SearchRowCells(TableCellCollection rowCells, TableColumnCollection columns, SearchContext searchContext)
        {
            bool flag = false;

            if (rowCells == null)
            {
                return(flag);
            }
            int num = 0;

            while (!flag && num < rowCells.Count)
            {
                if (!columns[num].Hidden)
                {
                    flag = rowCells[num].ReportItem.Search(searchContext);
                }
                num++;
            }
            return(flag);
        }
예제 #2
0
 public TableCell(AspNetCore.ReportingServices.ReportProcessing.Table tableDef, int index, TableCellCollection cells)
 {
     this.m_tableDef = tableDef;
     this.m_index    = index;
     this.m_cells    = cells;
 }