Exemple #1
0
		private void NotifyPrinted () 
		{
			if (this.SectionPrinted != null) {
				SectionEventArgs ea = new SectionEventArgs (this);
				SectionPrinted (this,ea);
			}
		}
Exemple #2
0
 private void NotifyPrinted()
 {
     if (this.SectionPrinted != null)
     {
         SectionEventArgs ea = new SectionEventArgs(this);
         SectionPrinted(this, ea);
     }
 }
 private void OnSectionPrinted(object sender, SectionEventArgs e)
 {
     if (this.SectionRendered != null)
     {
         SectionRenderEventArgs ea = new SectionRenderEventArgs(e.Section,
                                                                this.currentPageNumber,
                                                                this.CurrentRow,
                                                                this.CurrentSection);
         this.SectionRendered(this, ea);
     }
 }
		private void OnSectionPrinted (object sender,SectionEventArgs e)
		{
			if (this.SectionRendered != null) {
				SectionRenderEventArgs ea = new SectionRenderEventArgs (e.Section,
				                                                        this.currentPageNumber,
				                                                        this.CurrentRow,
				                                                        this.CurrentSection);
				this.SectionRendered(this,ea);
			}
		}