protected void OnProcessing(GhostscriptProcessorProcessingEventArgs e)
 {
     if (this.Processing != null)
     {
         this.Processing(this, e);
     }
 }
示例#2
0
 protected void OnProcessing(GhostscriptProcessorProcessingEventArgs e)
 {
     if (Processing != null)
     {
         this.Processing(this, e);
     }
 }
 void ghostscript_Processing(object sender, GhostscriptProcessorProcessingEventArgs e)
 {
     Console.WriteLine(e.CurrentPage.ToString() + " / " + e.CurrentPage.ToString());
 }