Interface ICanvasColumn
A column in a ICanvas
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface ICanvasColumn
A column in a ICanvas
public interface ICanvasColumn
Column size factor. Max value is 12 (= one column), other options are 8,6,4 or 0
int ColumnFactor { get; }
System.
|
List of ICanvas
List<ICanvasControl> Controls { get; }
Pn
|
The position of the Vertical section for smaller screens. Applied only for Vertical section
bool? IsLayoutReflowOnTop { get; }
System.
|
Is this a vertical section column?
bool IsVerticalSectionColumn { get; }
System.
|
Returns the layout index. Defaults to 1, except for the vertical section column this is 2
int LayoutIndex { get; }
System.
|
Column order
int Order { get; }
System.
|
Color emphasis of the column (used for the vertical section column)
int? VerticalSectionEmphasis { get; }
System.
|
The Zone Identifier
string ZoneId { get; }
System.
|
Resets the column, used in scenarios where a section is changed from type (e.g. from 3 column to 2 column)
void ResetColumn(int order, int columnFactor)
System. Column order to set |
System. Column factor to set |
Sets if vertical section should reflow on top
void SetIsLayoutReflowOnTop(bool isLayoutReflowOnTop)
System.
|
Sets the zone id
void SetZoneId(string zoneId)
System.
|