Interface ICanvasSection
Represents a section on the canvas
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface ICanvasSection
Represents a section on the canvas
public interface ICanvasSection
Is this section collapsible?
bool Collapsible { get; set; }
System.Boolean
|
PnP.Core.Model.SharePoint.CanvasColumn instances that are part of this section
List<ICanvasColumn> Columns { get; }
PnP.Core.Model.SharePoint.List<ICanvasColumn>
|
Controls hosted in this section
List<ICanvasControl> Controls { get; }
PnP.Core.Model.SharePoint.List<ICanvasControl>
|
The default PnP.Core.Model.SharePoint.CanvasColumn of this section
ICanvasColumn DefaultColumn { get; }
ICanvasColumn
|
DisplayName of the collapsible section
string DisplayName { get; set; }
System.String
|
Sets the alignment of the collaps icon, left/right or not configured
IconAlignment? IconAlignment { get; set; }
System.Nullable<IconAlignment>
|
Is the collapsible section expanded?
bool IsExpanded { get; set; }
System.Boolean
|
Order in which this section is presented on the page
float Order { get; set; }
System.Single
|
Show a devided line for this collapsible section?
bool ShowDividerLine { get; set; }
System.Boolean
|
Type of the section
CanvasSectionTemplate Type { get; set; }
CanvasSectionTemplate
|
A page can contain one section that has a vertical section column...use this attribute to get that column
ICanvasColumn VerticalSectionColumn { get; }
ICanvasColumn
|
Color emphasis of the section
int ZoneEmphasis { get; set; }
System.Int32
|