GetDefaultResourceSheetView

ProjectView.GetDefaultResourceSheetView method

Includes Uid, resource name, type, material label, initials, group, max units, standard rate, overtime rate, cost per use, accrue at, base calendar and code resource columns.

public static ProjectView GetDefaultResourceSheetView()

Return Value

a view which contains a list of ResourceViewColumn.

Examples

Shows how to save a project with resource sheet view.

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

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

See Also