コード例 #1
0
ファイル: BaseSection.cs プロジェクト: nylen/SharpDevelop
		private void NotifyPrinted () 
		{
			if (this.SectionPrinted != null) {
				SectionEventArgs ea = new SectionEventArgs (this);
				SectionPrinted (this,ea);
			}
		}
コード例 #2
0
ファイル: BaseSection.cs プロジェクト: kleinux/SharpDevelop
 private void NotifyPrinted()
 {
     if (this.SectionPrinted != null)
     {
         SectionEventArgs ea = new SectionEventArgs(this);
         SectionPrinted(this, ea);
     }
 }
コード例 #3
0
 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);
     }
 }
コード例 #4
0
ファイル: AbstractRenderer.cs プロジェクト: hpsa/SharpDevelop
		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);
			}
		}