| title | workbookTableColumn resource type |
|---|---|
| description | Represents a column in a table. |
| author | lumine2008 |
| ms.localizationpriority | medium |
| ms.subservice | excel |
| doc_type | resourcePageType |
| ms.date | 07/31/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a column in a table.
| Method | Return Type | Description |
|---|---|---|
| List | workbookTableColumn collection | Get tableColumn object collection. |
| Add | workbookTableColumn | Add a new column to the table. |
| Get | workbookTableColumn | Read properties and relationships of tableColumn object. |
| Update | workbookTableColumn | Update TableColumn object. |
| Delete | None | Deletes the column from the table. |
| Get column range | workbookRange | Gets the range object associated with the entire column. |
| Get data body range | workbookRange | Gets the range object associated with the data body of the column. |
| Get header row range | workbookRange | Gets the range object associated with the header row of the column. |
| Get item at | workbookTableColumn | Gets a column based on its position in the collection. |
| Get total row range | workbookRange | Gets the range object associated with the totals row of the column. |
| Property | Type | Description |
|---|---|---|
| id | string | The unique identifier for the column within the table. This property should be interpreted as an opaque string value and shouldn't be parsed to any other type. Read-only. |
| index | int | The index of the column within the columns collection of the table. Zero-indexed. Read-only. |
| name | string | The name of the table column. |
| 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. |
| Relationship | Type | Description |
|---|---|---|
| filter | workbookFilter | The filter applied to the column. Read-only. |
The following JSON representation shows the resource type.
{
"id": "1024",
"index": 1024,
"name": "string",
"values": "json"
}