workbookTableRow 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 a row in a table.
Methods
Method | Return Type | Description |
---|---|---|
List | workbookTableRow collection | Get a workbookTableRow object collection. |
Add | workbookTableRow | Add a new row to the table. |
Get | workbookTableRow | Read the properties and relationships of a tableRow object. |
Update | workbookTableRow | Update a workbookTableRow object. |
Delete | None | Delete the row from the table. |
Add rows | workbookTableRow | Add rows to the table. |
Get item at | workbookTableRow | Get a row based on its position in the collection. |
Get row range | workbookRange | Return the range object associated with the entire row. |
Properties
Property | Type | Description |
---|---|---|
index | Int32 | The index of the row within the rows collection of the table. Zero-based. Read-only. |
values | Json | The raw values of the specified range. The data returned could be of type string, number, or a Boolean. Any cell that contain an error will return the error string. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.workbookTableRow",
"index": "Integer",
"values": {
"@odata.type": "microsoft.graph.Json"
}
}