Aspose.Diagram.Examples.CSharp.Working_with_Print.SetPrintJobAndPrinterName.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run() 
        {
            // ExStart:SetPrintJobAndPrinterName
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_Print();

            // Load source Visio diagram
            Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");

            // Call the print method to print whole Diagram using the printer name and set document name in the print job
            diagram.Print("LaserJet1100", "Job name while printing with Aspose.Diagram");
            // ExEnd:SetPrintJobAndPrinterName
        }
    }
SetPrintJobAndPrinterName