public static void Run() { // The path to the documents directory. string dataDir = RunExamples.GetDataDir_Projects(); //Read the source Project Project project = new Project(dataDir + "GetNumberOfPagesForViews.mpp"); //Get number of pages Console.WriteLine(string.Format("Number of Pages = '{0}'", project.GetPageCount(PresentationFormat.ResourceUsage, Timescale.Days))); //Get number of pages (Months) Console.WriteLine(string.Format("Number of Pages = '{0}'", project.GetPageCount(PresentationFormat.ResourceUsage, Timescale.Months))); //Get number of pages (ThirdsOfMonths) Console.WriteLine(string.Format("Number of Pages = '{0}'", project.GetPageCount(PresentationFormat.ResourceUsage, Timescale.ThirdsOfMonths))); }
public static void Run() { // The path to the documents directory. string dataDir = RunExamples.GetDataDir_Projects(); //Read the source Project Project project = new Project(dataDir+ "GetNumberOfPagesForViews.mpp"); //Get number of pages Console.WriteLine(string.Format("Number of Pages = '{0}'", project.GetPageCount(PresentationFormat.ResourceUsage, Timescale.Days))); //Get number of pages (Months) Console.WriteLine(string.Format("Number of Pages = '{0}'", project.GetPageCount(PresentationFormat.ResourceUsage, Timescale.Months))); //Get number of pages (ThirdsOfMonths) Console.WriteLine(string.Format("Number of Pages = '{0}'", project.GetPageCount(PresentationFormat.ResourceUsage, Timescale.ThirdsOfMonths))); }
public static void Run() { // The path to the documents directory. string dataDir = RunExamples.GetDataDir_Projects(); //Read the input Project file Project project = new Project(dataDir + "GetNumberOfPages.mpp"); //Get number of pages int iPages = project.GetPageCount(); //Get number of pages (Timescale.Months) iPages = project.GetPageCount(Aspose.Tasks.Visualization.Timescale.Months); //Get number of pages (Timescale.ThirdsOfMonths) iPages = project.GetPageCount(Aspose.Tasks.Visualization.Timescale.ThirdsOfMonths); }
public static void Run() { // The path to the documents directory. string dataDir = RunExamples.GetDataDir_Projects(); //Read the input Project file Project project = new Project(dataDir+ "GetNumberOfPages.mpp"); //Get number of pages int iPages = project.GetPageCount(); //Get number of pages (Timescale.Months) iPages = project.GetPageCount(Aspose.Tasks.Visualization.Timescale.Months); //Get number of pages (Timescale.ThirdsOfMonths) iPages = project.GetPageCount(Aspose.Tasks.Visualization.Timescale.ThirdsOfMonths); }