MappedFolderType Enumeration
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Specifies the type of a mapped folder in a SharePoint project.
Namespace: Microsoft.VisualStudio.SharePoint
Assembly: Microsoft.VisualStudio.SharePoint (in Microsoft.VisualStudio.SharePoint.dll)
Syntax
'Declaration
<CLSCompliantAttribute(True)> _
Public Enumeration MappedFolderType
[CLSCompliantAttribute(true)]
public enum MappedFolderType
Members
Member name | Description | |
---|---|---|
ControlTemplates | Indicates a mapped folder that is mapped to {SharePointRoot}\Template\ControlTemplates. | |
Images | Indicates a mapped folder that is mapped to {SharePointRoot}\Template\Images. | |
Layouts | Indicates a mapped folder that is mapped to {SharePointRoot}\Template\Layouts. | |
Other | This is the value for any mapped folder that is not mapped to one of the folders that is specified by the other MappedFolderType values. | |
SharePointRoot | Indicates a mapped folder that is mapped to {SharePointRoot}. | |
Template | Indicates a mapped folder that is mapped to {SharePointRoot}\Template. |
Remarks
You can use the MappedFolderType values in the following scenarios:
To specify the type of mapped folder that you want to create by using the IMappedFolderCollection.Add(MappedFolderType) or IMappedFolderCollection.Add(MappedFolderType, Boolean) method.
To determine the type of mapped folder that an IMappedFolder object represents. Use the FolderType property to determine this.
When you create a mapped folder by using the IMappedFolderCollection.Add(String) or IMappedFolderCollection.Add(String, Boolean) method, the FolderType property of the new mapped folder is automatically set based on the relative path that you specify. If you specify a relative path that does not correspond to one of the standard mapped folder locations, the FolderType property of the new mapped folder has the value Other.