C# Класс Smartsheet.Api.Models.Cell.AddCellBuilder

A convenience class for quickly creating a List of Cells To update. /// The Cells. /// Adds the cell. /// /// Gets the cells. /// /// Adds the cell. /// /// Returns the list of Cells. /// A convenience class for adding a Cell with the necessary fields for inserting into a list of Cells.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AddCellBuilder ( long columnId, object value ) : System.Collections.Generic

Set required properties.

Build ( ) : Cell

Builds and returns the Cell object.

GetColumnId ( ) : long?

Gets the column Id.

GetFormat ( ) : string

Gets the Format.

GetHyperlink ( ) : Link

Gets the Hyperlink.

GetStrict ( ) : bool?

Gets the Strict option.

GetValue ( ) : object

Gets the Value.

SetColumnId ( long columnId ) : AddCellBuilder

Sets the Column Id

SetFormat ( string format ) : AddCellBuilder

Sets the format.

SetHyperlink ( Link hyperlink ) : AddCellBuilder

Sets the hyperlink.

SetStrict ( bool strict ) : AddCellBuilder

Sets whether cells is strict or not.

SetValue ( object value ) : AddCellBuilder

Sets the cell value

Описание методов

AddCellBuilder() публичный Метод

Set required properties.
public AddCellBuilder ( long columnId, object value ) : System.Collections.Generic
columnId long the column Id
value object the value of the cell
Результат System.Collections.Generic

Build() публичный Метод

Builds and returns the Cell object.
public Build ( ) : Cell
Результат Cell

GetColumnId() публичный Метод

Gets the column Id.
public GetColumnId ( ) : long?
Результат long?

GetFormat() публичный Метод

Gets the Format.
public GetFormat ( ) : string
Результат string

GetHyperlink() публичный Метод

Gets the Hyperlink.
public GetHyperlink ( ) : Link
Результат Link

GetStrict() публичный Метод

Gets the Strict option.
public GetStrict ( ) : bool?
Результат bool?

GetValue() публичный Метод

Gets the Value.
public GetValue ( ) : object
Результат object

SetColumnId() публичный Метод

Sets the Column Id
public SetColumnId ( long columnId ) : AddCellBuilder
columnId long the column Id
Результат AddCellBuilder

SetFormat() публичный Метод

Sets the format.
public SetFormat ( string format ) : AddCellBuilder
format string the format
Результат AddCellBuilder

SetHyperlink() публичный Метод

Sets the hyperlink.
public SetHyperlink ( Link hyperlink ) : AddCellBuilder
hyperlink Link the hyperlink
Результат AddCellBuilder

SetStrict() публичный Метод

Sets whether cells is strict or not.
public SetStrict ( bool strict ) : AddCellBuilder
strict bool the strict option
Результат AddCellBuilder

SetValue() публичный Метод

Sets the cell value
public SetValue ( object value ) : AddCellBuilder
value object the value
Результат AddCellBuilder