public override object PublishClone(AutomaticSubtotalContext context)
        {
            GaugePanelItem gaugePanelItem = (GaugePanelItem)base.PublishClone(context);

            if (this.m_action != null)
            {
                gaugePanelItem.m_action = (Action)this.m_action.PublishClone(context);
            }
            if (this.m_top != null)
            {
                gaugePanelItem.m_top = (ExpressionInfo)this.m_top.PublishClone(context);
            }
            if (this.m_left != null)
            {
                gaugePanelItem.m_left = (ExpressionInfo)this.m_left.PublishClone(context);
            }
            if (this.m_height != null)
            {
                gaugePanelItem.m_height = (ExpressionInfo)this.m_height.PublishClone(context);
            }
            if (this.m_width != null)
            {
                gaugePanelItem.m_width = (ExpressionInfo)this.m_width.PublishClone(context);
            }
            if (this.m_zIndex != null)
            {
                gaugePanelItem.m_zIndex = (ExpressionInfo)this.m_zIndex.PublishClone(context);
            }
            if (this.m_hidden != null)
            {
                gaugePanelItem.m_hidden = (ExpressionInfo)this.m_hidden.PublishClone(context);
            }
            if (this.m_toolTip != null)
            {
                gaugePanelItem.m_toolTip = (ExpressionInfo)this.m_toolTip.PublishClone(context);
            }
            return(gaugePanelItem);
        }
 public GaugePanelItem(AspNetCore.ReportingServices.ReportIntermediateFormat.GaugePanelItem defObject, GaugePanel gaugePanel)
 {
     this.m_defObject  = defObject;
     this.m_gaugePanel = gaugePanel;
 }