public void Reset()
 {
     for (int i = 0; i < this.m_paragraphs.Length; i++)
     {
         ParagraphImpl paragraphImpl = this.m_paragraphs[i];
         if (paragraphImpl != null)
         {
             paragraphImpl.Reset();
         }
     }
 }
 public override Paragraph this[int index]
 {
     get
     {
         if (index >= 0 && index < this.Count)
         {
             ParagraphImpl paragraphImpl = this.m_paragraphs[index];
             if (paragraphImpl == null)
             {
                 AspNetCore.ReportingServices.ReportIntermediateFormat.Paragraph paragraphDef = this.m_textBoxDef.Paragraphs[index];
                 paragraphImpl            = new ParagraphImpl(paragraphDef, this.m_reportRT, this.m_iErrorContext, this.m_scope);
                 this.m_paragraphs[index] = paragraphImpl;
             }
             return(paragraphImpl);
         }
         throw new ArgumentOutOfRangeException("index");
     }
 }