Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Represents a horizontal section in a given SharePoint page.
Inherits from entity.
Methods
Method | Return type | Description |
---|---|---|
List | horizontalSection collection | Get a list of the horizontalSection objects and their properties. |
Create | horizontalSection | Create a new horizontalSection object. |
Get | horizontalSection | Read the properties and relationships of a horizontalSection object. |
Update | horizontalSection | Update the properties of a horizontalSection object. |
Delete | horizontalSection | Delete a horizontalSection object. |
Properties
Property | Type | Description |
---|---|---|
emphasis | sectionEmphasisType | Enumeration value that indicates the emphasis of the section background. The possible values are: none , netural , soft , strong , unknownFutureValue . |
id | String | Unique identifier of the resource. Inherited from entity. |
layout | horizontalSectionLayoutType | Layout type of the section. The possible values are: none , oneColumn , twoColumns , threeColumns , oneThirdLeftColumn , oneThirdRightColumn , fullWidth , unknownFutureValue . |
sectionEmphasisType values
Member | Description |
---|---|
none | The section has no background. |
neutral | The section has a neutral emphasis in the background. |
soft | The section has a soft emphasis in the background. |
strong | The section has a strong emphasis in the background. |
unknownFutureValue | Marker value for future compatibility. |
horizontalSectionLayoutType values
Member | Description |
---|---|
none | The section has no layout. |
oneColumn | The section has only one column. |
twoColumns | The section has two columns. |
threeColumns | The section has three columns. |
oneThirdLeftColumn | The section has a 1/3 column on the left and 2/3 column on the right. |
oneThirdRightColumn | The section has a 2/3 column on the left and 1/3 column on the right. |
fullWidth | The section has one full width column. |
unknownFutureValue | Marker value for future compatibility. |
Relationships
Relationship | Type | Description |
---|---|---|
columns | horizontalSectionColumn collection | The set of vertical columns in this section. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.horizontalSection",
"id": "String (identifier)",
"layout": "String",
"emphasis": "String"
}