public override object PublishClone(AutomaticSubtotalContext context)
        {
            MapCustomView mapCustomView = (MapCustomView)base.PublishClone(context);

            if (this.m_centerX != null)
            {
                mapCustomView.m_centerX = (ExpressionInfo)this.m_centerX.PublishClone(context);
            }
            if (this.m_centerY != null)
            {
                mapCustomView.m_centerY = (ExpressionInfo)this.m_centerY.PublishClone(context);
            }
            return(mapCustomView);
        }
Exemple #2
0
 public MapCustomView(AspNetCore.ReportingServices.ReportIntermediateFormat.MapCustomView defObject, Map map)
     : base(defObject, map)
 {
 }