示例#1
0
		protected void NotifyAfterPrint (PointF afterPrintLocation)
		{
			if (this.ItemPrinted != null) {
				AfterPrintEventArgs rea = new AfterPrintEventArgs (afterPrintLocation);
				ItemPrinted(this, rea);
			}
		}
 protected void NotifyAfterPrint(PointF afterPrintLocation)
 {
     if (this.ItemPrinted != null)
     {
         AfterPrintEventArgs rea = new AfterPrintEventArgs(afterPrintLocation);
         ItemPrinted(this, rea);
     }
 }