Esempio n. 1
0
 public void GetAssignedDynamicValues(List <int> styles, List <AspNetCore.ReportingServices.ReportIntermediateFormat.AttributeInfo> values)
 {
     if (this.m_colorAssigned && this.m_owner.Color.IsExpression)
     {
         styles.Add((int)this.m_owner.ColorAttrName);
         values.Add(StyleInstance.CreateAttrInfo(this.m_color));
     }
     if (this.m_styleAssigned && this.m_owner.Style.IsExpression)
     {
         styles.Add((int)this.m_owner.StyleAttrName);
         values.Add(StyleInstance.CreateAttrInfo((int)this.m_style));
     }
     if (this.m_widthAssigned && this.m_owner.Width.IsExpression)
     {
         styles.Add((int)this.m_owner.WidthAttrName);
         values.Add(StyleInstance.CreateAttrInfo(this.m_width));
     }
 }
 internal void GetAssignedDynamicValues(List <int> styles, List <Microsoft.ReportingServices.ReportIntermediateFormat.AttributeInfo> values)
 {
     if (m_colorAssigned && m_owner.Color.IsExpression)
     {
         styles.Add((int)m_owner.ColorAttrName);
         values.Add(StyleInstance.CreateAttrInfo(m_color));
     }
     if (m_styleAssigned && m_owner.Style.IsExpression)
     {
         styles.Add((int)m_owner.StyleAttrName);
         values.Add(StyleInstance.CreateAttrInfo((int)m_style));
     }
     if (m_widthAssigned && m_owner.Width.IsExpression)
     {
         styles.Add((int)m_owner.WidthAttrName);
         values.Add(StyleInstance.CreateAttrInfo(m_width));
     }
 }