Project Solutions

Visual Studio 2012 provides project templates you can use to create application-level add-ins for Microsoft Office Project. You can use add-ins to automate Project, extend Project features, or customize the Project user interface (UI).

For more information about application-level add-ins, see Getting Started Programming Application-Level Add-Ins and Architecture of Application-Level Add-Ins. If you are new to programming with Microsoft Office, see Getting Started (Office Development in Visual Studio).

Applies to: The information in this topic applies to application-level projects for Project 2013 and Project 2010. For more information, see Features Available by Office Application and Project Type.

Automating Project by Using the Project Object Model

The Project object model exposes many types that you can use to automate Project. These types enable you to write code to accomplish common tasks such as programmatically creating and modifying tasks in a project.

To access the Project object model from an add-in, use the Application field of the ThisAddIn class in your project. The Application field returns a Microsoft.Office.Interop.MsProject.Application object that represents the current instance of Project. For more information, see Programming Application-Level Add-Ins.

When you call into the Project object model, you use types that are provided in the primary interop assembly for Project. The primary interop assembly acts as a bridge between the managed code in the add-in and the COM object model in Project. All types in the Project primary interop assembly are defined in the Microsoft.Office.Interop.MSProject namespace. For more information about primary interop assemblies, see Office Solutions Development Overview and Office Primary Interop Assemblies.

Using the Project Object Model Documentation

For complete information about the Project object model, you can refer to the Project VBA object model reference. The VBA object model reference documents the Project object model as it is exposed to Visual Basic for Applications (VBA) code. For more information, see Project 2010 Object Model Reference.

All of the objects and members in the VBA object model reference correspond to types and members in the Project primary interop assembly (PIA). For example, the Calendar object in the VBA object model reference corresponds to the Microsoft.Office.Interop.MSProject.Calendar type in the Project PIA. Although the VBA object model reference provides code examples for most properties, methods, and events, you must translate the VBA code in this reference to Visual Basic or Visual C# if you want to use them in an Project add-in project that you create by using Visual Studio.

Note

At this time, there is no reference documentation for the Project primary interop assembly.

Infrastructure Types in the Project Primary Interop Assembly

As you write code that uses the Project PIA, you might notice many types that are not described in the VBA reference. These additional types help translate objects in the COM-based object model of Project to managed code, are not intended to be used directly in your code.

For more information, see Overview of Classes and Interfaces in the Office Primary Interop Assemblies.

Customizing the User Interface of Project

You can customize the Project UI in the following ways.

Task

For more information

Add custom tabs to the Ribbon in Project

Ribbon Overview

For more information about customizing the UI of Project and other Microsoft Office applications, see Office UI Customization.

See Also

Tasks

Walkthrough: Creating Your First Application-Level Add-in for Project

How to: Create Office Projects in Visual Studio

Reference

Office Primary Interop Assemblies

Concepts

Getting Started Programming Application-Level Add-Ins

Office Solutions Development Overview

Architecture of Application-Level Add-Ins

Writing Code in Office Solutions

Other Resources

Programming Application-Level Add-Ins

Office UI Customization

Project 2010 and Project Server 2010 in Office Development