C# Class 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.
Afficher le fichier Open project: smartsheet-platform/smartsheet-csharp-sdk Class Usage Examples

Méthodes publiques

Méthode Description
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

Method Details

AddCellBuilder() public méthode

Set required properties.
public AddCellBuilder ( long columnId, object value ) : System.Collections.Generic
columnId long the column Id
value object the value of the cell
Résultat System.Collections.Generic

Build() public méthode

Builds and returns the Cell object.
public Build ( ) : Cell
Résultat Cell

GetColumnId() public méthode

Gets the column Id.
public GetColumnId ( ) : long?
Résultat long?

GetFormat() public méthode

Gets the Format.
public GetFormat ( ) : string
Résultat string

GetHyperlink() public méthode

Gets the Hyperlink.
public GetHyperlink ( ) : Link
Résultat Link

GetStrict() public méthode

Gets the Strict option.
public GetStrict ( ) : bool?
Résultat bool?

GetValue() public méthode

Gets the Value.
public GetValue ( ) : object
Résultat object

SetColumnId() public méthode

Sets the Column Id
public SetColumnId ( long columnId ) : AddCellBuilder
columnId long the column Id
Résultat AddCellBuilder

SetFormat() public méthode

Sets the format.
public SetFormat ( string format ) : AddCellBuilder
format string the format
Résultat AddCellBuilder

SetHyperlink() public méthode

Sets the hyperlink.
public SetHyperlink ( Link hyperlink ) : AddCellBuilder
hyperlink Link the hyperlink
Résultat AddCellBuilder

SetStrict() public méthode

Sets whether cells is strict or not.
public SetStrict ( bool strict ) : AddCellBuilder
strict bool the strict option
Résultat AddCellBuilder

SetValue() public méthode

Sets the cell value
public SetValue ( object value ) : AddCellBuilder
value object the value
Résultat AddCellBuilder