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
PnP.Core.Model.SharePoint.CanvasColumn instances that are part of this section
List<ICanvasColumn> Columns { get; }
| List<ICanvasColumn> |
Controls hosted in this section
List<ICanvasControl> Controls { get; }
| 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; }
| string |
HeadingLevel of the collapsible section. 2, 3, or 4 corresponding to h2, h3, and h4. Default is 2.
int HeadingLevel { get; set; }
| int |
Sets the alignment of the collaps icon, left/right or not configured
IconAlignment? IconAlignment { get; set; }
| IconAlignment? |
Order in which this section is presented on the page
float Order { get; set; }
| float |
Show a devided line for this collapsible section?
bool ShowDividerLine { get; set; }
| bool |
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 |