PresentationFormat

PresentationFormat enumeration

Enumeration for presentation format.

public enum PresentationFormat

Values

NameValueDescription
GanttChart0Gantt Chart presentation format.
TaskUsage1Task usage presentation format.
ResourceUsage2Resource usage presentation format.
ResourceSheet3Resource sheet presentation format.
TaskSheet4Task sheet presentation format.

Examples

Shows how to render resource sheet view.

var project = new Project(DataDir + "ResourceSheetView.mpp");

SaveOptions options = new PdfSaveOptions();

// Set the Presentation Format to Resource Sheet
options.PresentationFormat = PresentationFormat.ResourceSheet;
project.Save(OutDir + "ResourceSheetView_out.pdf", options);

See Also