Esempio n. 1
0
        public override object PublishClone(AutomaticSubtotalContext context)
        {
            GaugeRow gaugeRow = (GaugeRow)base.PublishClone(context);

            if (this.m_cells != null)
            {
                gaugeRow.m_cells   = new GaugeCellList();
                gaugeRow.GaugeCell = (GaugeCell)this.GaugeCell.PublishClone(context);
            }
            return(gaugeRow);
        }
Esempio n. 2
0
 public GaugeRow(GaugePanel gaugePanel, AspNetCore.ReportingServices.ReportIntermediateFormat.GaugeRow rowDef)
 {
     this.m_gaugePanel = gaugePanel;
     this.m_rowDef     = rowDef;
 }