예제 #1
0
 public GaugeMember(IDefinitionPath parentDefinitionPath, GaugePanel owner, GaugeMember parent)
     : base(parentDefinitionPath, owner, parent, 0)
 {
 }
예제 #2
0
 public GaugeDynamicMemberInstance(GaugePanel owner, GaugeMember memberDef, InternalDynamicMemberLogic memberLogic)
     : base(owner, memberDef)
 {
     this.m_memberLogic = memberLogic;
     this.ResetContext();
 }
예제 #3
0
 public GaugeMember(IReportScope reportScope, IDefinitionPath parentDefinitionPath, GaugePanel owner, GaugeMember parent, AspNetCore.ReportingServices.ReportIntermediateFormat.GaugeMember memberDef)
     : base(parentDefinitionPath, owner, parent, 0)
 {
     this.m_memberDef = memberDef;
     if (this.m_memberDef.IsStatic)
     {
         this.m_reportScope = reportScope;
     }
     base.m_group = new Group(owner, this.m_memberDef, this);
 }