Create site columns, content types, and lists for SharePoint

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Visual Studio provides project item templates for many different fundamental SharePoint items, including lists and content types, both of which can incorporate site columns (or fields). The new designers for content types and lists make creating these items easier than ever.

Site columns

Site columns are one of the most basic elements you can add to a SharePoint project. A site column represents a type of data, such as a telephone number, a comment, or the city name of a contact in a contact list.

The new site column project item template makes creating site columns easier than in the earlier version of Visual Studio. After creating a new site column, you can modify the XML in the site column's Elements.xml file to include the information that you want, such as its display name, its data type, and the group in which you want the site column to appear in SharePoint. For more information about site columns, see Introduction to Columns.

Content types and lists

Content types and lists are among the most frequently used elements in SharePoint.

A content type defines the metadata, workflow, and behavior for a category of items in a SharePoint list or document library. For example, you can create a content type for information in a contacts list or a task list. A contact content type might include columns such as Name, Email, Telephone Number, and Address. A content type that you define at the site level is independent of any list or document library in the site. You can use the same content type with different lists or document libraries on the SharePoint site. You can also use several content types on the same list or document library.

A list is a collection of information in SharePoint that you can share with others. Lists consist of rows of columns that contain data. Some examples of lists include: a task list, a contacts list, and an announcements list.

The new Content Type and List designers in Visual Studio make creating site content types and lists much easier and more intuitive than in the earlier version of Visual Studio. The UI enables you to visually construct content types and lists in a familiar manner, and lets you sort and group data in lists and use group headings. For more information about content types, see Content Types. For more information about lists, see List Forms and List Views.

Title Description
Walkthrough: Create a site column, content type, and list for SharePoint Demonstrates how to create site columns that are used in a custom content type. The content type is then used in a custom list.

See also