示例#1
0
 /// <summary>
 /// Raises the <see cref='BeginPrint'/> event.
 /// </summary>
 protected internal virtual void OnBeginPrint(PrintEventArgs e)
 {
     _beginPrintHandler?.Invoke(this, e);
 }
示例#2
0
 /// <summary>
 /// Raises the <see cref='EndPrint'/> event.
 /// </summary>
 protected internal virtual void OnEndPrint(PrintEventArgs e)
 {
     _endPrintHandler?.Invoke(this, e);
 }
示例#3
0
 private void handlePageOver()
 {
     //if (PageOver != null) PageOver();
     PageOver?.Invoke();
 }