Метод | Описание | |
---|---|---|
CopySheet ( long sheetId, |
Creates a copy of the specified Sheet. It mirrors To the following Smartsheet REST API method:
|
|
CreateSheet ( Api.Models.Sheet sheet ) : Api.Models.Sheet |
Create a sheet in default "Sheets" collection. It mirrors To the following Smartsheet REST API method:
|
|
CreateSheetFromTemplate ( Api.Models.Sheet sheet, IEnumerable |
Create a sheet (from existing sheet or template) in default "Sheets" collection. It mirrors To the following Smartsheet REST API method: POST /Sheets
|
|
DeleteSheet ( long sheetId ) : void |
Create a sheet in given folder. It mirrors To the following Smartsheet REST API method: POST /folders/{folderId}/Sheets Create a sheet (from existing sheet or template) in given folder. It mirrors To the following Smartsheet REST API method: POST /folders/{folderId}/Sheets Delete a sheet. It mirrors To the following Smartsheet REST API method: DELETE /sheets/{sheetId}
|
|
GetPublishStatus ( long sheetId ) : Api.Models.SheetPublish |
Get the Status of the Publish settings of the sheet, including the URLs of any enabled publishings. It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}/publish
|
|
GetSheet ( long sheetId, IEnumerable |
Get a sheet. It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}
|
|
GetSheetAsCSV ( long sheetId, |
Get a sheet as a CSV file. It mirrors To the following Smartsheet REST API method:
|
|
GetSheetAsExcel ( long sheetId, |
Get a sheet as an Excel file. It mirrors To the following Smartsheet REST API method:
|
|
GetSheetAsPDF ( long sheetId, |
Get a sheet as a PDF file. It mirrors To the following Smartsheet REST API method:
|
|
GetSheetVersion ( long sheetId ) : int? |
Gets the Sheet version without loading the entire Sheet. It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}/version
|
|
ListOrganizationSheets ( |
List all Sheets in the organization. It mirrors To the following Smartsheet REST API method: GET /users/sheets
|
|
ListSheets ( IEnumerable |
Gets the list of all Sheets that the User has access to, in alphabetical order, by name. It mirrors To the following Smartsheet REST API method: GET /Sheets
|
|
MoveSheet ( long sheetId, |
Moves the specified sheet to a new location. It mirrors To the following Smartsheet REST API method:
|
|
SendSheet ( long sheetId, Api.Models.SheetEmail email ) : void |
Send a sheet as a PDF attachment via Email To the designated recipients. It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/emails
|
|
SendUpdateRequest ( long sheetId, |
Creates an Update Request for the specified Row(s) within the Sheet. An email notification (containing a link to the update request) will be asynchronously sent to the specified recipient(s). It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/updaterequests
|
|
SheetResourcesImpl ( |
Constructor. Exceptions: - IllegalArgumentException : if any argument is null
|
|
UpdatePublishStatus ( long id, Api.Models.SheetPublish publish ) : Api.Models.SheetPublish |
Sets the publish Status of a sheet and returns the new Status, including the URLs of any enabled publishings. It mirrors To the following Smartsheet REST API method: PUT /sheets/{sheetId}/publish
|
|
UpdateSheet ( Api.Models.Sheet sheet ) : Api.Models.Sheet |
Update a sheet. To modify Sheet contents, see Add Row(s), Update Row(s), and Update Column. This operation can be used to update an individual user’s sheet settings. If the request body contains only the userSettings attribute, this operation may be performed even if the user only has read-only access to the sheet (i.e. the user has viewer permissions, or the sheet is read-only). It mirrors To the following Smartsheet REST API method: PUT /sheets/{sheetId}
|
Метод | Описание | |
---|---|---|
CopyStream ( Stream input, Stream output ) : void |
Copy stream.
|
|
GetSheetAsFile ( long sheetId, Api.Models.PaperSize paperSize, |
Get a sheet as a file. It mirrors To the following Smartsheet REST API method:
|
public CopySheet ( long sheetId, |
||
sheetId | long | the sheet Id |
destination | the destination to copy to | |
include | IEnumerable |
the elements to copy. Note: Cell history will not be copied, regardless of which include parameter values are specified. |
Результат | Api.Models.Sheet |
public CreateSheet ( Api.Models.Sheet sheet ) : Api.Models.Sheet | ||
sheet | Api.Models.Sheet | the sheet To created |
Результат | Api.Models.Sheet |
public CreateSheetFromTemplate ( Api.Models.Sheet sheet, IEnumerable |
||
sheet | Api.Models.Sheet | the sheet To create |
includes | IEnumerable |
used To specify the optional objects To include. |
Результат | Api.Models.Sheet |
public DeleteSheet ( long sheetId ) : void | ||
sheetId | long | the sheetId |
Результат | void |
public GetPublishStatus ( long sheetId ) : Api.Models.SheetPublish | ||
sheetId | long | the sheetId |
Результат | Api.Models.SheetPublish |
public GetSheet ( long sheetId, IEnumerable |
||
sheetId | long | the Id of the sheet |
includes | IEnumerable |
used To specify the optional objects To include. |
excludes | IEnumerable |
used To specify the optional objects To include. |
rowIds | IEnumerable |
used To specify the optional objects To include. |
rowNumbers | IEnumerable |
used To specify the optional objects To include. |
columnIds | IEnumerable |
used To specify the optional objects To include. |
pageSize | long | used To specify the optional objects To include. |
page | long | used To specify the optional objects To include. |
Результат | Api.Models.Sheet |
public GetSheetAsCSV ( long sheetId, |
||
sheetId | long | the Id of the sheet |
outputStream | the output stream To which the CSV file will be written. | |
Результат | void |
public GetSheetAsExcel ( long sheetId, |
||
sheetId | long | the Id of the sheet |
outputStream | the output stream To which the Excel file will be written. | |
Результат | void |
public GetSheetAsPDF ( long sheetId, |
||
sheetId | long | the Id of the sheet |
outputStream | the output stream To which the PDF file will be written. | |
paperSize | Api.Models.PaperSize | the paper size |
Результат | void |
public GetSheetVersion ( long sheetId ) : int? | ||
sheetId | long | the sheetId |
Результат | int? |
public ListOrganizationSheets ( |
||
paging | ||
Результат | PaginatedResult |
public ListSheets ( IEnumerable |
||
includes | IEnumerable |
|
paging | ||
modifiedSince | System.DateTime | |
Результат | PaginatedResult |
public MoveSheet ( long sheetId, |
||
sheetId | long | the sheet Id |
destination | the destination to copy to | |
Результат | Api.Models.Sheet |
public SendSheet ( long sheetId, Api.Models.SheetEmail email ) : void | ||
sheetId | long | the sheetId |
Api.Models.SheetEmail | the Email | |
Результат | void |
public SendUpdateRequest ( long sheetId, |
||
sheetId | long | the sheetId |
the Email | ||
Результат |
public SheetResourcesImpl ( |
||
smartsheet | the Smartsheet | |
Результат | System |
public UpdatePublishStatus ( long id, Api.Models.SheetPublish publish ) : Api.Models.SheetPublish | ||
id | long | the sheetId |
publish | Api.Models.SheetPublish | the SheetPublish object limited. |
Результат | Api.Models.SheetPublish |
public UpdateSheet ( Api.Models.Sheet sheet ) : Api.Models.Sheet | ||
sheet | Api.Models.Sheet | the sheet To update |
Результат | Api.Models.Sheet |