SheetColumnResources Interface | ![]() |
This interface provides methods to access column resources that are associated to a sheet object.
Thread Safety: Implementation of this interface must be thread safe.
Namespace: Smartsheet.Api
The SheetColumnResources type exposes the following members.
Name | Description | |
---|---|---|
![]() | AddColumns | Inserts one or more columns into the Sheet specified in the URL. It mirrors to the following Smartsheet REST API method: POST /sheets/{sheetId}/Columns |
![]() | DeleteColumn | Deletes the Column specified in the URL. It mirrors to the following Smartsheet REST API method: DELETE /sheets/{sheetId}/columns/{columnId} |
![]() | GetColumn | Gets the Column specified in the URL. It mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/columns/{columnId} |
![]() | ListColumns(Int64, IEnumerableColumnInclusion, PaginationParameters) | Gets a list of all Columns belonging to the Sheet specified in the URL. It mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/columns ![]() This operation supports pagination of results. For more information, see Paging. |
![]() | ListColumns(Int64, IEnumerableColumnInclusion, PaginationParameters, NullableInt32) | Gets a list of all Columns belonging to the Sheet specified in the URL. It mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/columns ![]() This operation supports pagination of results. For more information, see Paging. |
![]() | UpdateColumn | Updates properties of the column, moves the column, and/or renames the column. You cannot change the type of a Primary column. While dependencies are enabled on a sheet, you can’t change the type of any special calendar/Gantt columns. If the column type is changed, all cells in the column will be converted to the new column type. Type is optional when moving or renaming, but required when changing type or dropdown values. It mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/columns/{columnId} |