예제 #1
0
 // ------------------------------------------------------------------
 /// <summary>
 /// Print previews all pages of the diagram.
 /// </summary>
 // ------------------------------------------------------------------
 public void PrintPreview()
 {
     DiagramPrinter myPrinter = new DiagramPrinter(
         this.PageSettings,
         this,
         true);
 }
예제 #2
0
 // ------------------------------------------------------------------
 /// <summary>
 /// Prints all pages of the diagram.
 /// </summary>
 // ------------------------------------------------------------------
 public void Print()
 {
     DiagramPrinter myPrinter = new DiagramPrinter(
         this.PageSettings,
         this,
         false);
 }
예제 #3
0
 // ------------------------------------------------------------------
 /// <summary>
 /// Print previews all pages of the diagram.
 /// </summary>
 // ------------------------------------------------------------------
 public void PrintPreview() {
   DiagramPrinter myPrinter = new DiagramPrinter(
       this.PageSettings,
       this,
       true);
 }
예제 #4
0
 // ------------------------------------------------------------------
 /// <summary>
 /// Prints all pages of the diagram.
 /// </summary>
 // ------------------------------------------------------------------
 public void Print() {
   DiagramPrinter myPrinter = new DiagramPrinter(
       this.PageSettings,
       this,
       false);
 }