workbookTableRow resource type

Namespace: microsoft.graph

Represents a row in a table.

Methods

Method Return Type Description
List workbookTableRow collection Get a tableRow object collection.
Create workbookTableRow Add rows to the table.
Get workbookTableRow Read the properties and relationships of a tableRow object.
Update workbookTableRow Update a workbookTableRow object.
Delete None Delete a row from the table.
Range Range Return the range object associated with the entire row.
Itemat workbookTableRow Get a row based on its position in the collection.
Add workbookTableRow Add a new row to the table.

Properties

Property Type Description
index Int32 Returns the index number of the row within the rows collection of the table. Zero-indexed. Read-only.
values Json Represents the raw values of the specified range. The data returned could be of type string, number, or a boolean. Cell that contain an error will return the error string.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.workbookTableRow",
  "index": "Integer",
  "values": {
    "@odata.type": "microsoft.graph.Json"
  }
}