Exemplo n.º 1
0
 internal ActionInfo(RenderingContext renderingContext, IReportScope reportScope, Microsoft.ReportingServices.ReportIntermediateFormat.Action actionDef, IInstancePath instancePath, ReportElement reportElementOwner, ObjectType objectType, string objectName, IROMActionOwner romActionOwner)
 {
     m_renderingContext   = renderingContext;
     m_reportScope        = reportScope;
     m_actionDef          = actionDef;
     m_isOldSnapshot      = false;
     m_instancePath       = instancePath;
     m_reportElementOwner = reportElementOwner;
     m_objectType         = objectType;
     m_objectName         = objectName;
     m_romActionOwner     = romActionOwner;
 }
Exemplo n.º 2
0
 public ActionInfo(RenderingContext renderingContext, IReportScope reportScope, AspNetCore.ReportingServices.ReportIntermediateFormat.Action actionDef, IInstancePath instancePath, ReportElement reportElementOwner, ObjectType objectType, string objectName, IROMActionOwner romActionOwner)
 {
     this.m_renderingContext   = renderingContext;
     this.m_reportScope        = reportScope;
     this.m_actionDef          = actionDef;
     this.m_isOldSnapshot      = false;
     this.m_instancePath       = instancePath;
     this.m_reportElementOwner = reportElementOwner;
     this.m_objectType         = objectType;
     this.m_objectName         = objectName;
     this.m_romActionOwner     = romActionOwner;
 }
Exemplo n.º 3
0
        internal ActionInfoWithDynamicImageMap Add(RenderingContext renderingContext, ReportItem owner, IROMActionOwner romActionOwner)
        {
            ActionInfoWithDynamicImageMap actionInfoWithDynamicImageMap = new ActionInfoWithDynamicImageMap(renderingContext, owner, romActionOwner);

            m_list.Add(actionInfoWithDynamicImageMap);
            return(actionInfoWithDynamicImageMap);
        }
 internal ActionInfoWithDynamicImageMap(RenderingContext renderingContext, IReportScope reportScope, Microsoft.ReportingServices.ReportIntermediateFormat.Action actionDef, IInstancePath instancePath, ReportItem owner, IROMActionOwner romActionOwner)
     : base(renderingContext, reportScope, actionDef, instancePath, owner, owner.ReportItemDef.ObjectType, owner.ReportItemDef.Name, romActionOwner)
 {
     base.IsDynamic = true;
 }
 internal ActionInfoWithDynamicImageMap(RenderingContext renderingContext, Microsoft.ReportingServices.ReportIntermediateFormat.Action actionDef, ReportItem owner, IROMActionOwner romActionOwner)
     : this(renderingContext, owner.ReportScope, actionDef, owner.ReportItemDef, owner, romActionOwner)
 {
 }
 internal ActionInfoWithDynamicImageMap(RenderingContext renderingContext, ReportItem owner, IReportScope reportScope, IInstancePath instancePath, IROMActionOwner romActionOwner, bool chartConstructor)
     : this(renderingContext, reportScope, new Microsoft.ReportingServices.ReportIntermediateFormat.Action(), instancePath, owner, romActionOwner)
 {
     m_chartConstruction = chartConstructor;
 }
 public ActionInfoWithDynamicImageMap(RenderingContext renderingContext, ReportItem owner, IROMActionOwner romActionOwner)
     : this(renderingContext, new AspNetCore.ReportingServices.ReportIntermediateFormat.Action(), owner, romActionOwner)
 {
 }