Rendering Task Sheet View in PHP

Aspose.Tasks - Rendering Task Sheet View

To render Task Sheet View using Aspose.Tasks Java for PHP, simply invoke RenderTaskSheetView module. Here you can see example code.

 1$project = new Project('test_tasks.mpp');
 2
 3$options = new PdfSaveOptions();
 4
 5$presentationFormat = new PresentationFormat();
 6
 7$options->setPresentationFormat($presentationFormat->TaskSheet);
 8
 9$project->save("taskSheet.pdf", $options);
10
11print "Created task sheet view file.";

Download Running Code

Download Rendering Task Sheet View (Aspose.Tasks) from any of the below mentioned social coding sites:

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.