Interface IFooterOptions
Options to configure a the site footer chrome.
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface IFooterOptions
Options to configure a the site footer chrome.
public interface IFooterOptions
The footer display name
string DisplayName { get; set; }
System.String
|
Gets or sets the value of the footer emphasis.
FooterVariantThemeType Emphasis { get; set; }
FooterVariantThemeType
|
Gets or sets a value that specifies whether the footer is enabled on the site.
bool Enabled { get; set; }
System.Boolean
|
Gets or sets the value of the footer layout.
FooterLayoutType Layout { get; set; }
FooterLayoutType
|
Clears the footer logo
void ClearLogo()
Clears the footer logo
Task ClearLogoAsync()
Task
|
Sets the footer's logo to the provided image.
void SetLogo(string fileName, Stream content, bool overwrite = false)
System.String
fileName
Name of your image file |
Stream
content
The contents of the file |
System.Boolean
overwrite
Indicates whether the file should be overwritten if already existing. |
Sets the footer's logo to the provided image.
Task SetLogoAsync(string fileName, Stream content, bool overwrite = false)
System.String
fileName
Name of your image file |
Stream
content
The contents of the file |
System.Boolean
overwrite
Indicates whether the file should be overwritten if already existing. |
Task
|