SPViewScope Simple Type (DeploymentManifest)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Provides values for specifying the recursive scope of a specified view into a document library.

Definition

<xs:simpleType name="SPViewScope">
        <xs:restriction base="xs:string">
                <xs:enumeration value="Default" />
                <xs:enumeration value="Recursive" />
                <xs:enumeration value="RecursiveAll" />
                <xs:enumeration value="FilesOnly" />
        </xs:restriction>
</xs:simpleType>

Enumeration values

Value Description
Default
Shows only the files and subfolders of a specific folder.
Recursive
Shows all files of all folders.
RecursiveAll
Shows all files and all subfolders of all folders.
FilesOnly
Shows only the files of a specific folder.

See also