Méthode | Description | |
---|---|---|
AddColumns ( long sheetId, IEnumerable |
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 ( long sheetId, long columnId ) : void |
Deletes the Column specified in the URL. It mirrors To the following Smartsheet REST API method: DELETE /sheets/{sheetId}/columns/{columnId}
|
|
GetColumn ( long sheetId, long columnId, IEnumerable |
Gets the Column specified in the URL. It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}/columns/{columnId}
|
|
ListColumns ( long sheetId, IEnumerable |
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
|
|
SheetColumnResourcesImpl ( |
Constructor.
|
|
UpdateColumn ( long sheetId, Api.Models.Column column ) : Api.Models.Column |
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}
|
public AddColumns ( long sheetId, IEnumerable |
||
sheetId | long | the sheet Id |
columns | IEnumerable |
the column object(s) |
Résultat | IList |
public DeleteColumn ( long sheetId, long columnId ) : void | ||
sheetId | long | the sheet Id |
columnId | long | the column object |
Résultat | void |
public GetColumn ( long sheetId, long columnId, IEnumerable |
||
sheetId | long | the sheet Id |
columnId | long | the columnId |
include | IEnumerable |
elements to include in response |
Résultat | Api.Models.Column |
public ListColumns ( long sheetId, IEnumerable |
||
sheetId | long | the sheet Id |
include | IEnumerable |
elements to include in response |
paging | the paging | |
Résultat | PaginatedResult |
public SheetColumnResourcesImpl ( |
||
smartsheet | the Smartsheet | |
Résultat | System.Collections.Generic |
public UpdateColumn ( long sheetId, Api.Models.Column column ) : Api.Models.Column | ||
sheetId | long | the sheet Id |
column | Api.Models.Column | column object to update |
Résultat | Api.Models.Column |