Aspose.Tasks.Examples.CSharp.Miscellaneous.SaveCashFlowReport.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName);

            // ExStart:SaveCashFlowReport
            Project project1 = new Project(dataDir + "OzBuild 16 Orig.mpp");
            project1.SaveReport(dataDir + "CashFlow_out.pdf", ReportType.CashFlow);
            // ExEnd:SaveCashFlowReport
        }
    }
SaveCashFlowReport