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.
|
Pn
List<ICanvasColumn> Columns { get; }
Pn
|
Controls hosted in this section
List<ICanvasControl> Controls { get; }
Pn
|
The default Pn
ICanvasColumn DefaultColumn { get; }
DisplayName of the collapsible section
string DisplayName { get; set; }
System.
|
Sets the alignment of the collaps icon, left/right or not configured
IconAlignment? IconAlignment { get; set; }
System.
|
Is the collapsible section expanded?
bool IsExpanded { get; set; }
System.
|
Order in which this section is presented on the page
float Order { get; set; }
System.
|
Show a devided line for this collapsible section?
bool ShowDividerLine { get; set; }
System.
|
Type of the section
CanvasSectionTemplate Type { get; set; }
A page can contain one section that has a vertical section column...use this attribute to get that column
ICanvasColumn VerticalSectionColumn { get; }
Color emphasis of the section
int ZoneEmphasis { get; set; }
System.
|