Exemplo n.º 1
0
        public override object PublishClone(AutomaticSubtotalContext context)
        {
            TablixRow tablixRow = (TablixRow)base.PublishClone(context);

            if (this.m_height != null)
            {
                tablixRow.m_height = (string)this.m_height.Clone();
            }
            if (this.m_cells != null)
            {
                tablixRow.m_cells = new TablixCellList(this.m_cells.Count);
                {
                    foreach (TablixCell cell in this.m_cells)
                    {
                        tablixRow.m_cells.Add((TablixCell)cell.PublishClone(context));
                    }
                    return(tablixRow);
                }
            }
            return(tablixRow);
        }
 public InternalTablixRow(Tablix owner, int rowIndex, AspNetCore.ReportingServices.ReportIntermediateFormat.TablixRow rowDef)
     : base(owner, rowIndex)
 {
     this.m_rowDef      = rowDef;
     this.m_cellROMDefs = new TablixCell[rowDef.Cells.Count];
 }