Class DocumentSetOptions
Available options for a Document Set
Inheritance
System.Object
DocumentSetOptions
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public class DocumentSetOptions : object
Available options for a Document Set
public class DocumentSetOptions : object
List of the allowed content types in the document set
public List<IContentType> AllowedContentTypes { get; set; }
PnP.Core.Model.SharePoint.List<IContentType>
|
Default contents of document set.
public List<DocumentSetContentOptions> DefaultContents { get; set; }
PnP.Core.Model.SharePoint.List<DocumentSetContentOptions>
|
Defines if we keep the existing content types that are already allowed in the document set
public bool KeepExistingContentTypes { get; set; }
System.Boolean
|
Defines if we keep the existing default contents or delete those (by not adding them to our body)
public bool KeepExistingDefaultContent { get; set; }
System.Boolean
|
Defines if we keep the existing shared columns or delete those (by not adding them to our body)
public bool KeepExistingSharedColumns { get; set; }
System.Boolean
|
Defines if we keep the existing welcome page columns or delete those (by not adding them to our body)
public bool KeepExistingWelcomePageColumns { get; set; }
System.Boolean
|
Specifies whether to push welcome page changes to inherited content types.
public bool? PropagateWelcomePageChanges { get; set; }
System.Nullable<System.Boolean>
|
Columns edited on the document set that synchronize to all documents in the set. These are read-only on the documents themselves.
public List<IField> SharedColumns { get; set; }
PnP.Core.Model.SharePoint.List<IField>
|
Indicates whether to add the name of the document set to each file name.
public bool? ShouldPrefixNameToFile { get; set; }
System.Nullable<System.Boolean>
|
Specifies columns to show on the welcome page for the document set.
public List<IField> WelcomePageColumns { get; set; }
PnP.Core.Model.SharePoint.List<IField>
|
Welcome page absolute URL.
public string WelcomePageUrl { get; set; }
System.String
|