Esempio n. 1
0
 public CustomLabel this[string name]
 {
     get
     {
         for (int i = 0; i < this.Count; i++)
         {
             AspNetCore.ReportingServices.ReportIntermediateFormat.CustomLabel customLabel = this.m_gaugeScale.GaugeScaleDef.CustomLabels[i];
             if (string.CompareOrdinal(name, customLabel.Name) == 0)
             {
                 return(base[i]);
             }
         }
         throw new RenderingObjectModelException(ProcessingErrorCode.rsNotInCollection, name);
     }
 }
 public CustomLabel(AspNetCore.ReportingServices.ReportIntermediateFormat.CustomLabel defObject, GaugePanel gaugePanel)
 {
     this.m_defObject  = defObject;
     this.m_gaugePanel = gaugePanel;
 }