GetDefaultAssignmentView

ProjectView.GetDefaultAssignmentView method

Includes Uid, task name, resource name, work and duration assignment columns.

public static ProjectView GetDefaultAssignmentView()

Return Value

a view which contains a list of AssignmentViewColumn.

Examples

Shows how to save a project with assignment view.

var project = new Project(DataDir + "Project2.mpp");
SaveOptions options = new PdfSaveOptions
{
    Timescale = Timescale.Months,
    View = ProjectView.GetDefaultAssignmentView()
};

project.Save(OutDir + "WorkWithProjectView_AssignmentView_out.pdf", options);

See Also