webPartPosition resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the position information of the given web part to the current page.

Properties

Property Type Description
columnId Double Indicates the identifier of the column where the web part is located.
horizontalSectionId Double Indicates the horizontal section where the web part is located.
isInVerticalSection boolean Indicates whether the web part is located in the vertical section.
webPartIndex Double Index of the current web part. Represents the order of the web part in this column or section.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.webPartPosition",
  "webPartIndex": "Double",
  "horizontalSectionId": "Double",
  "isInVerticalSection": "Boolean",
  "columnId": "Double"
}