Aspose.Words.Examples.CSharp.Rendering_and_Printing.PrintDocViaXpsPrint.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:PrintDocViaXpsPrint
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_RenderingAndPrinting();
            // Open a sample document in Aspose.Words.
            Document document = new Document(dataDir + "TestFile.doc");

            // Specify the name of the printer you want to print to.
            const string printerName = @"\\COMPANY\Brother MFC-885CW Printer";

            // Print the document.
            XpsPrintHelper.Print(document, printerName, "My Test Job", true);
            // ExEnd:PrintDocViaXpsPrint
        }
        
PrintDocViaXpsPrint