public void Update(AspNetCore.ReportingServices.ReportRendering.Action newAction)
 {
     this.m_renderAction = newAction;
     this.m_label        = null;
     this.m_bookmark     = null;
     this.m_hyperlink    = null;
 }
Exemplo n.º 2
0
		public void Update(AspNetCore.ReportingServices.ReportRendering.Action newAction)
		{
			if (this.m_instance != null)
			{
				this.m_instance.Update(newAction);
			}
			if (this.m_drillthrough != null)
			{
				this.m_drillthrough.Update(newAction);
			}
			if (newAction != null)
			{
				this.m_renderAction = newAction;
			}
		}
Exemplo n.º 3
0
 public void Update(AspNetCore.ReportingServices.ReportRendering.Action newAction)
 {
     if (this.m_instance != null)
     {
         this.m_instance.Update(newAction);
     }
     if (newAction != null)
     {
         this.m_renderAction = newAction;
     }
     if (this.m_parameters != null)
     {
         this.m_parameters.Update(this.m_renderAction.DrillthroughParameters, this.m_renderAction.DrillthroughParameterNameObjectCollection, this.m_renderAction.ActionInstance);
     }
 }
 public ActionInstance(AspNetCore.ReportingServices.ReportRendering.Action renderAction)
     : base(null)
 {
     this.m_isOldSnapshot = true;
     this.m_renderAction  = renderAction;
 }
Exemplo n.º 5
0
		public Action(ActionInfo owner, AspNetCore.ReportingServices.ReportRendering.Action renderAction)
		{
			this.m_owner = owner;
			this.m_renderAction = renderAction;
		}
 public void Update(AspNetCore.ReportingServices.ReportRendering.Action newAction)
 {
     this.m_renderAction = newAction;
     this.ResetInstanceCache();
 }