Méthode | Description | |
---|---|---|
AddRows ( long sheetId, IEnumerable |
Inserts one or more rows into the Sheet specified in the URL. It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/rows
|
|
AddRowsAllowPartialSuccess ( long sheetId, IEnumerable |
Inserts one or more rows into the Sheet specified in the URL with allowPartialSuccess. It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/rows?allowPartialSuccess=true
|
|
CopyRowsToAnotherSheet ( long sheetId, |
Copies Row(s) from the Sheet specified in the URL to (the bottom of) another sheet. It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/rows/copy
|
|
DeleteRows ( long sheetId, IEnumerable |
Deletes one or more row(s) from the Sheet It mirrors To the following Smartsheet REST API method: DELETE /sheets/{sheetId}/rows?ids={rowId1},{rowId2},{rowId3}...
|
|
GetRow ( long sheetId, long rowId, IEnumerable |
Gets the Row specified in the URL. It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}/rows/{rowId}
|
|
MoveRowsToAnotherSheet ( long sheetId, |
Moves Row(s) from the Sheet specified in the URL to (the bottom of) another sheet. It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/rows/copy Up to 5,000 row IDs can be specified in the request, but if the total number of rows in the destination sheet after the copy exceeds the Smartsheet row limit, an error response will be returned. Any child rows of the rows specified in the request will also be moved. Parent-child relationships amongst rows will be preserved within the destination sheet.
|
|
SendRows ( long sheetId, |
Sends one or more Rows via email. It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/rows/emails
|
|
SheetRowResourcesImpl ( |
Constructor. Parameters: - Smartsheet : the SmartsheetImpl Exceptions: - IllegalArgumentException : if any argument is null
|
|
UpdateRows ( long sheetId, IEnumerable |
Updates cell values in the specified row(s), expands/collapses the specified row(s), and/or modifies the position of specified rows (including indenting/outdenting). It mirrors To the following Smartsheet REST API method: PUT /sheets/{sheetId}/rows
|
|
UpdateRowsAllowPartialSuccess ( long sheetId, IEnumerable |
Updates cell values in the specified row(s), expands/collapses the specified row(s), and/or modifies the position of specified rows (including indenting/outdenting). It mirrors To the following Smartsheet REST API method: PUT /sheets/{sheetId}/rows?allowPartialSuccess=true
|
Méthode | Description | |
---|---|---|
DeleteRow ( long sheetId, long rowId ) : void | ||
SendRow ( long sheetId, long rowId, |
public AddRows ( long sheetId, IEnumerable |
||
sheetId | long | the sheet Id |
rows | IEnumerable |
one or more rows |
Résultat | IList |
public AddRowsAllowPartialSuccess ( long sheetId, IEnumerable |
||
sheetId | long | the sheet Id |
rows | IEnumerable |
one or more rows |
Résultat |
public CopyRowsToAnotherSheet ( long sheetId, |
||
sheetId | long | the sheet Id |
directive | directive | |
include | IEnumerable |
objects to include |
ignoreRowsNotFound | bool | ignoreRowsNotFound |
Résultat |
public DeleteRows ( long sheetId, IEnumerable |
||
sheetId | long | The sheet ID |
ids | IEnumerable |
The list of row IDs |
ignoreRowsNotFound | bool | If set to false and any of the specified Row IDs are not found, no rows will be deleted, and the “not found” error will be returned. |
Résultat | IList |
public GetRow ( long sheetId, long rowId, IEnumerable |
||
sheetId | long | the sheetId |
rowId | long | the rowId |
include | IEnumerable |
comma-separated list of elements to include in the response. |
exclude | IEnumerable |
a comma-separated list of optional objects to exclude in the response. |
Résultat | Row |
public MoveRowsToAnotherSheet ( long sheetId, |
||
sheetId | long | the sheet Id |
directive | directive | |
include | IEnumerable |
the elements to include. |
ignoreRowsNotFound | bool | ignoreRowsNotFound |
Résultat |
public SendRows ( long sheetId, |
||
sheetId | long | The sheet Id |
The email. The columns included for each row in the email will be populated according to the following rules:
///
|
||
Résultat | void |
public SheetRowResourcesImpl ( |
||
smartsheet | the Smartsheet | |
Résultat | System |
public UpdateRows ( long sheetId, IEnumerable |
||
sheetId | long | the sheetId |
rows | IEnumerable |
the list of rows to update |
Résultat | IList |
public UpdateRowsAllowPartialSuccess ( long sheetId, IEnumerable |
||
sheetId | long | the sheetId |
rows | IEnumerable |
the list of rows to update |
Résultat |