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