Click or drag to resize

RowColumnResources Interface

This interface provides methods to access cell resources that are associated to a row and column. Thread Safety: Implementation of this interface must be thread safe.

Namespace:  Smartsheet.Api
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
public interface RowColumnResources
Methods
  NameDescription
Public methodAddImageToCell(Int64, Int64, Int64, String, String)

Uploads an image to the specified cell within a sheet.

Mirrors to the following Smartsheet REST API method: POST /sheets/{sheetId}/rows/{rowId}/columns/{columnId}/cellimages

Public methodAddImageToCell(Int64, Int64, Int64, String, String, Boolean, String)

Uploads an image to the specified cell within a sheet.

Mirrors to the following Smartsheet REST API method: POST /sheets/{sheetId}/rows/{rowId}/columns/{columnId}/cellimages

Public methodGetCellHistory(Int64, Int64, Int64, IEnumerableCellInclusion, PaginationParameters)

Gets the cell modification history.

Mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/rows/{rowId}/columns/{columnId}/history

Remarks

This operation supports pagination of results. For more information, see Paging.

This is a resource-intensive operation and incurs 10 additional requests against the rate limit.

Public methodGetCellHistory(Int64, Int64, Int64, IEnumerableCellInclusion, PaginationParameters, NullableInt32)

Gets the cell modification history.

Mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/rows/{rowId}/columns/{columnId}/history

Remarks

This operation supports pagination of results. For more information, see Paging.

This is a resource-intensive operation and incurs 10 additional requests against the rate limit.

Top
See Also